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_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:20.2, create in guard statements
13 ** @verdict pass reject
14 *****************************************************************/
15
16 // The following requirement is tested:
17 // Also, the guard expression shall not use of the operations create, running,
18 // alive and activate.
19
20 module NegSem_2002_TheAltStatement_002 {
21
22 type port MyPort message {
23 inout charstring
24 } with {extension "internal"}
25
26 type component GeneralComp {
27 port MyPort p;
28 }
29
30 template charstring m_test := "ping";
31
32 testcase TC_NegSem_2002_TheAltStatement_002() runs on GeneralComp {
33 connect(self:p, self: p);
34 p.send(m_test);
35 alt {
36 [GeneralComp.create != null] p.receive(charstring:?) {
37 setverdict(pass);
38 }
39 }
40 }
41
42 control {
43 execute(TC_NegSem_2002_TheAltStatement_002());
44 }
45 }
This page took 0.054152 seconds and 5 git commands to generate.