Sem_060101_TopLevel_010.ttcn 1.08 KB
Newer Older
kovacsa's avatar
kovacsa committed
/***************************************************
 ** @author   STF 521
 ** @version  0.0.1
 ** @purpose  1:6.1.1, Assign and read hexstring with newline character
 ** @verdict  pass accept, ttcn3verdict:pass
 ***************************************************/

/* The following requirements are tested:
 * Within the quotes any number of whitespaces or any sequence of the following C0 control characters: 
 * LF(10), VT(11), FF(12), CR(13) which constitutes a newline  may be included. The newline shall be preceded by a backslash ("\").
 * Such whitespaces, control characters and backslash will be ignored for the value and length calculation.
*/

module Sem_060101_TopLevel_010 {
    
    type component GeneralComp {}
    
    testcase TC_Sem_060101_TopLevel_010() runs on GeneralComp {
        var hexstring v_a  := 'Ab\
				cD'H;
               
    	if (match(v_a,'AbcD'H))
        {
    		setverdict(pass,"v_a:",v_a);
    	}
    	else {
    		setverdict(fail,"v_a:",v_a);
    	}
    }
    
    control{
        execute(TC_Sem_060101_TopLevel_010());
    }
}