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 / Sem_210304_kill_test_component_006.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.4, killing MTC from PTC
13 ** @verdict pass accept, ttcn3verdict:pass
14 *****************************************************************/
15
16 // The following requirements are tested:
17 // The kill operation can be applied on the current test component itself by a simple
18 // kill statement or by addressing itself using the self operation in conjunction with
19 // the kill operation.
20
21
22 module Sem_210304_kill_test_component_006 {
23
24 type component GeneralComp {
25 timer t;
26 }
27
28 function f() runs on GeneralComp {
29 var boolean v_bCond := true;
30 setverdict(pass);
31 if (v_bCond) { mtc.kill; } // to bypass possible "unreachable statement" errors
32 setverdict(fail);
33 }
34
35 testcase TC_Sem_210304_kill_test_component_006() runs on GeneralComp system GeneralComp {
36 var GeneralComp ptc := GeneralComp.create alive;
37
38 ptc.start(f());
39 t.start(5.0);
40 t.timeout;
41 setverdict(fail);
42 }
43
44 control {
45 execute(TC_Sem_210304_kill_test_component_006());
46 }
47 }
This page took 0.031905 seconds and 5 git commands to generate.