conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 21_configuration_operations / 2103_test_component_operations / 210304_kill_test_component_operation / NegSem_210304_kill_test_component_002.ttcn
1 /******************************************************************************
2 * Copyright (c) 2000-2016 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Adrien Kirjak – initial implementation
10 *
11 ** @version 0.0.1
12 ** @purpose 1:21.3.3, restarting explicitly killed alive component
13 ** @verdict pass reject
14 *****************************************************************/
15
16 // The following requirements are tested:
17 // The kill operation applied on a test component stops the execution of the currently
18 // running behaviour - if any - of that component and frees all resources associated
19 // to it (including all port connections of the killed component) and removes the
20 // component from the test system.
21
22 module NegSem_210304_kill_test_component_002 {
23
24 type port P message {
25 inout integer;
26 } with {extension "internal"}
27
28 type component GeneralComp {
29 port P p;
30 }
31
32 function f() runs on GeneralComp {
33 p.receive(integer:?);
34 }
35
36 testcase TC_NegSem_210304_kill_test_component_002() runs on GeneralComp system GeneralComp {
37 var GeneralComp ptc := GeneralComp.create alive;
38 ptc.start(f());
39 ptc.kill;
40 ptc.start(f());
41 setverdict(pass);
42 }
43
44 control {
45 execute(TC_NegSem_210304_kill_test_component_002());
46 }
47 }
This page took 0.035609 seconds and 5 git commands to generate.