conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 20_statement_and_operations_for_alt / 2002_the_alt_statement / NegSem_2002_TheAltStatement_010.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:20.2, alive in alt branch event
13 ** @verdict pass reject
14 *****************************************************************/
15
16 // The following requirement is tested:
17 // Also, the event operation shall not use the operations create, running, alive
18 // and activate.
19
20 module NegSem_2002_TheAltStatement_010 {
21
22 type port MyPort message {
23 inout boolean
24 } with {extension "internal"}
25
26 type component GeneralComp {
27 port MyPort p;
28 }
29
30 function f_dummy() runs on GeneralComp {}
31
32 testcase TC_NegSem_2002_TheAltStatement_010() runs on GeneralComp {
33
34 var GeneralComp d_ptc := GeneralComp.create alive;
35 d_ptc.start(f_dummy());
36
37 connect(self:p, self: p);
38 p.send(true);
39
40 alt {
41 [] p.receive(boolean:d_ptc.alive) {
42 setverdict(pass);
43 }
44 }
45
46 d_ptc.kill;
47 }
48
49 control {
50 execute(TC_NegSem_2002_TheAltStatement_010());
51 }
52 }
This page took 0.0322 seconds and 5 git commands to generate.