blob: b3506c059d996ce7779e17e09c3779ada4b1c2e6 [file] [log] [blame]
module Test {
import from GSM_SystemInformation all;
const octetstring si1 := '5506198fb38000000000000000000000000000e504002b'O;
const octetstring si2 := '59061a00000000000000000000000000000000ffe50400'O;
const octetstring si3 := '49061b000062f22404d2490301275d40e50400392b2b2b'O;
const octetstring si4 := '31061c62f22404d25d40e504002b2b2b2b2b2b2b2b2b2b'O;
type component dummy_CT {
};
testcase TC_si1() runs on dummy_CT {
var SystemInformationHeader hdr := {
l2_plen := valueof(t_L2Pseudolength(21)),
skip_indicator := 0,
rr_protocol_discriminator := 6,
message_type := '19'O
};
log("SI: ", dec_SystemInformation(si1));
log("SI: ", dec_SystemInformation(si2));
log("SI: ", dec_SystemInformation(si3));
log("SI: ", dec_SystemInformation(si4));
}
control {
execute(TC_si1());
}
}