sct_testcase_11_operations.textile 3.4 KB

123456789101112
  1. h1(#Test2). Yakindu SCT Testcase 11 - Operations
  2. |_. Nr |_. Testname |_. Test Instructions |_. Postconditions |_. Status|
  3. | 11.1 | Preparations | In the src folder, create a new Java source file Operations.java with following contents:<p>&emsp;@import java.io.IOException;@<br>&emsp;@public class Operations {@<p>&emsp;&emsp;@public long returnFive() {@<br>&emsp;&emsp;@return 5;@<br>&emsp;&emsp;@}@<p>&emsp;&emsp;@public long returnSum(long i, double d) {@<br>&emsp;&emsp;@return (long) (i + d);@<br>&emsp;&emsp;@}@<p>&emsp;&emsp;@public void throwUncheckedException() {@<br>&emsp;&emsp;@throw new RuntimeException("Runtime Exception in executed code");@<br>&emsp;&emsp;@}@<p>&emsp;&emsp;@public void throwCheckedException() throws IOException {@<br>&emsp;&emsp;@throw new IOException("IOException in executed code");@<br>&emsp;&emsp;@}@<br>&emsp;@}@<p>Right click on Staircase.sct.</p><p>In the context menu, select *Run as... → Run Configurations*.</p><p>In the Staircase run configuration, enter Operations as operation class.</p><p>Click *Apply*.</p><p>Click *Close*.</p><br></br><p>Open Staircase.sct and add the following to the internal scope:</p><p>&emsp;@operation returnFive():integer@<br>&emsp;@operation returnSum(param1 : integer, param2 : real ):integer@<br>&emsp;@operation throwUncheckedException(): void@<br>&emsp;@operation throwCheckedException():void@<br>&emsp;@operation unsupportedMethod():void@ | There are no error markers in the project. There are five warnings "Internal declaration is not used in statechart". | %{color:red}open% |
  4. | 11.2 | Calling a valid operation during statechat execution | Open Staircase.sct.<p>Edit transition from LightOn to LightOff and change the expression to <br>"@after returnFive() s@".</p><p>Run simulation.</p><p>Click keypress to transition to state LightOn.</p> | After 5 seconds the state transitions from LightOn to LightOff. | %{color:red}open% |
  5. | 11.3 | CheckedException during execution | Open Staircase.sct.<p>Edit state LightOn.</p><p>Change expression to <br>"@entry / throwCheckedException()@".</p><p>Run simulation.</p><p>Click keypress to transition to state LightOn.</p> | A popup method informs the user that a IOException has occurred in the executed code and offers to relaunch or terminate the simulation. | %{color:red}open% |
  6. | 11.4 | UncheckedException during execution | Open Staircase.sct.<p>Edit state LightOn.</p><p>Change expression to <br>"@entry / throwUncheckedException()@".</p><p>Run simulation.</p><p>Click keypress to transition to state LightOn.</p> | A popup method informs the user that a RuntimeException has occurred in the executed code and offers to relaunch or terminate the simulation. | %{color:red}open% |
  7. | 11.5 | Calling invalid operation | Open Staircase.sct.<p>Edit transition from LightOn to LightOff and change the expression to <br>"@after returnFive s@", i.e. without the brackets.</p><p>Run simulation.</p><p>Click keypress to transition to state LightOn.</p> | After 5 seconds the state transitions from LightOn to LightOff. | %{color:red}open% |
  8. | 11.6 | Calling another valid operation during statechat execution | Open Staircase.sct.<p>Edit transition from LightOn to LightOff and change the expression to <br>"@after returnSum(1, 4.1) s@".</p><p>Run simulation.</p><p>Click keypress to transition to state LightOn.</p> | After 5 seconds the state transitions from LightOn to LightOff. | %{color:red}open% |