conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 22_communication_operations / 2204_the_check_operation / Sem_2204_the_check_operation_024.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:22.4, Verify behaviour of any port.check(receive) with assignment in case of successful match works correctly as standalone statement
13 ** @verdict pass accept, ttcn3verdict:pass
14 *****************************************************************/
15 module Sem_2204_the_check_operation_024 {
16
17 type port P message {
18 inout integer;
19 } with {extension "internal"}
20
21 type component GeneralComp {
22 port P p1, p2;
23 }
24
25 testcase TC_Sem_2204_the_check_operation_024() runs on GeneralComp {
26 var integer v_val;
27
28 connect(self:p2, self:p2);
29 p2.send(integer:1);
30 any port.check(receive(integer:(0..10)) -> value v_val);
31
32 if (v_val == 1) { setverdict(pass, "Check operation successful"); }
33 else { setverdict(fail, "Incorrect address value"); }
34
35 any port.receive(integer:?);
36 setverdict(pass, "Message still on the top of the queue");
37 }
38
39 control {
40 execute(TC_Sem_2204_the_check_operation_024(), 5.0);
41 }
42 }
This page took 0.036148 seconds and 5 git commands to generate.