No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

89 líneas
5.2KB

  1. %&tex
  2. \subsection{Test Protocol}
  3. \label{sec:test_protocol}
  4. The last step of the preparation phase is to design tests.
  5. The tests are designed to validate if the system meets the specifications.
  6. While defining the tests, it became clear that part of the specifications was not explicitly defined.
  7. As the specifications were made before the design decissisions in the initial design and the feature definition, the specifications did not take that information into account.
  8. Updating the specifications after the design decissions was overlooked during the specification of the design plan.
  9. To ensure the repeatibility of the tests, this step starts with specifying the order of operation and improved specifications.
  10. \subsubsection{Defining the Order of Operation}
  11. There are two modes of operation: writing and wiping.
  12. Defining the order of operation also distributes the responsibility between the different components.
  13. The writing operation can be split in the following steps:
  14. \begin{order}{Writing}
  15. \emph{Precondition:} Marker as end-effector.
  16. \begin{enumerate}
  17. \item Move cable driven carriage to position of characters.
  18. \item Write three characters with the SCARA.
  19. \item Repeat step 1 and 2 till the Tweet is on the board.
  20. \item Move carriage away from the text on the board.
  21. \end{enumerate}
  22. \end{order}
  23. The other operation is wiping.
  24. This is similar to the operation of writing with the following steps:
  25. \begin{order}{Wiping}
  26. \emph{Precondition:} Wiper as end-effector.
  27. \begin{enumerate}
  28. \item Move cable driven carriage to position of characters.
  29. \item Clear the area in reach of the SCARA.
  30. \item Repeat step 1 and 2 till the Tweet is removed from on the board.
  31. \end{enumerate}
  32. \end{order}
  33. Furthermore, switching between the states requires the tool to be switched.
  34. However, at this point, it is not known how tools will be switched.
  35. Therefore, the order of operation is determined during the development of the end-effector.
  36. Additionally, the missing order of operation for the end-effector did not result in difficulty while defining the tests.
  37. \subsubsection{Improving Specifications}
  38. Based on the order of operation, the following specifications were added to the list in \autoref{sec:specifications}:
  39. \begin{specification}
  40. \begin{enumerate}
  41. \setcounter{enumi}{12}
  42. \input{content/input/speclistc.tex}
  43. \end{enumerate}
  44. \end{specification}
  45. These additional specifications are also based on the combined system decission that was made in section \autoref{sec:initialdesign}.
  46. These specifications distribute responsibility between sub-components.
  47. \subsubsection{Setting up the tests}
  48. With the updated specifications it was possible to create a number of test cases.
  49. In total there are five small test cases and four large test cases.
  50. The small tests cover a sub-system and the large tests apply on the complete systems.
  51. Each tests has a list of specifications that are covered with the test and for smaller tests the subsystem under test is also determined.
  52. With a short description it is described how the test should be performed.
  53. One of the small tests focusses on the speed and range requirements of the SCARA:
  54. \setcounter{testcounter}{0}
  55. \begin{test}{Small rectangle}
  56. \input{content/input/systemtest1.tex}
  57. \end{test}
  58. Repeatability is tested in one of the large system wide tests:
  59. \setcounter{testcounter}{5}
  60. \begin{test}{Repeatability}
  61. \input{content/input/systemtest6.tex}
  62. \end{test}
  63. The complete set of system tests is included in \autoref{app:test_specification}.
  64. \subsubsection{Evaluation}
  65. This step was completed without many difficulties.
  66. Which includes the revision of the earlier specifications and definition of orders of operation.
  67. Indicating that I overlooked details while defining the specifications in \autoref{sec:specifications}.
  68. According to the design plan as described in \autoref{chap:analysis}, I should go back and review those specifications.
  69. Followed by reviewing all steps after the specifications.
  70. However, this complete review is not practical and extremely time consuming.
  71. The point here is, looking at the evaluations of this and previous steps, that chosen design strategy is not feasible, especially as a novice designer.
  72. In \autoref{chap:case_evaluation} I will evaluate this with more detail.
  73. During the analysis, I expected more specific tests.
  74. Each test could then be used as a milestone during the development of the system.
  75. Every time detail is added, an additional test passes.
  76. Or a test fails, notifying that something went wrong and should be investigated.
  77. Creating such specific tests relies on the details in the design of the system.
  78. The current design is basic and these details are added during the feature implementation.
  79. Nevertheless, this step resulted in a set of tests that cover all specifications and features that are specified in this preparation phase.
  80. When all the tests pass, the system should meet all the requirements.