conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 24_test_verdict_operations / 2401_the_verdict_mechanism / Sem_2401_LocalVerdict_007.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.2
12 ** @purpose 1:24.1, Ensure overwriting rules for local verdict: none can't overwrite inconc.
13 ** @verdict pass accept, ttcn3verdict:inconc
14 *****************************************************************/
15 /*
16 * #reqname /Requirements/24 Test verdict operations/24.1 The Verdict mechanism/Overwriting rules for setverdict
17 **/
18 /*
19 * #reqname /Requirements/24 Test verdict operations/24.2 The Setverdict operation/The value of the local verdict is changed with the setverdict operation.
20 **/
21
22
23 module Sem_2401_LocalVerdict_007 {
24 type component GeneralComp {}
25
26 testcase TC_Sem_2401_LocalVerdict_007() runs on GeneralComp {
27 setverdict(inconc);
28 setverdict(none);
29
30 // The verdict is evaluated by the validation tool according to @verdict header
31 }
32
33 control{
34 execute(TC_Sem_2401_LocalVerdict_007());
35 }
36 }
This page took 0.032686 seconds and 5 git commands to generate.