Sem_160102_predefined_functions_069.ttcn 1007 Bytes
Newer Older
kovacsa's avatar
kovacsa committed
/***************************************************
 ** @author   STF 487
 ** @version  0.0.1
 ** @purpose  1:16.1.2, Ensure that predefined encvalue_unichar function works properly in case of encoding universal charstring
 ** @verdict  pass accept, ttcn3verdict:pass

 ***************************************************/

/* The following requirements are tested:  

 * this test focuses on the predefined functions encvalue_unichar (utf-32 big endian)*/



module Sem_160102_predefined_functions_069 {
    
    type component GeneralComp {

    }

    testcase TC_Sem_160102_predefined_functions_069 () runs on GeneralComp {

    var charstring v_test := "abc";

     //Encoding:  

    var universal charstring v_test_enc_32BE := encvalue_unichar(v_test,"UTF-32BE"); //encode to universal charstring UTF-32 big endian
    setverdict(pass,"Encoded value: ", v_test_enc_32BE);

    }

    control{

        execute(TC_Sem_160102_predefined_functions_069());

    }

}