conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 16_functions_altsteps_testcases / 1601_functions / 160102_predefined_functions / Sem_160102_predefined_functions_034.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:16.1.2, Ensure that the IUT recognizes predefined functions and correctly evaluates them (as specified by Annex C)
13 ** @verdict pass accept, ttcn3verdict:pass
14 ***************************************************/
15
16 /* The following requirements are tested:
17 * This function converts an octetstring to universal charstring.*/
18
19
20 module Sem_160102_predefined_functions_034 {
21
22
23 type component GeneralComp {
24 }
25
26
27 testcase TC_Sem_160102_predefined_functions_034 () runs on GeneralComp {
28
29 //octetstring:
30 var octetstring v_0 := '414243313233616263'O;
31
32 // predefined function for universal charstring to octetstring conversion:
33 var universal charstring v_decode := oct2unichar(v_0); //expected value: ABC123abc
34 var universal charstring v_1 := "ABC123abc";
35
36 if( match(v_decode,v_1)
37 ) {
38 setverdict(pass,"Decoded value for: ",v_0, " is ", v_decode);
39 }
40 else {
41 setverdict(fail,"encoded value is: ", v_decode, " expected ", v_1);
42 }
43 }
44
45 control{
46 execute(TC_Sem_160102_predefined_functions_034());
47 }
48 }
This page took 0.031342 seconds and 5 git commands to generate.