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_014.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, running (component) in altstep branch
13 ** @verdict pass reject
14 *****************************************************************/
15
16 // The following requirement is tested:
17 // Also, the altstep invocation parameters shall not use the operations create,
18 // running, alive and activate.
19
20 module NegSem_2002_TheAltStatement_014 {
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 altstep a_receive(boolean p_bool) runs on GeneralComp {
31 [] p.receive(p_bool) {
32 setverdict(pass);
33 }
34 }
35
36 function f_dummy() runs on GeneralComp {}
37
38 testcase TC_NegSem_2002_TheAltStatement_014() runs on GeneralComp {
39
40 var GeneralComp d_ptc := GeneralComp.create alive;
41 d_ptc.start(f_dummy());
42
43 connect(self:p, self: p);
44 p.send(true);
45
46 alt {
47 [] a_receive(d_ptc.running);
48 }
49
50 d_ptc.kill;
51 }
52
53 control {
54 execute(TC_NegSem_2002_TheAltStatement_014());
55 }
56 }
This page took 0.035773 seconds and 5 git commands to generate.