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_003.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 (timer) 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_003 {
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_003() runs on GeneralComp {
33 timer t_tmr := 1.0;
34 t_tmr.start;
35
36 connect(self:p,self:p);
37
38 p.send(m_test);
39 alt {
40 [t_tmr.running] p.receive(charstring:?) {
41 setverdict(pass);
42 }
43 }
44 }
45
46 control {
47 execute(TC_NegSem_2002_TheAltStatement_003());
48 }
49 }
This page took 0.033475 seconds and 5 git commands to generate.