Commit ba1b5ba0 authored by zeiss's avatar zeiss
Browse files

No commit message

No commit message
parent 4d3776b3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
 ** @author   STF 409
 ** @version  $Rev: 150 $
 ** @purpose  1:15.8, Ensure that template(omit) is accepted with value omitvalue.
 ** @verdict  pass accept, ttcn3verdict:pass
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Syn_1508_TemplateRestrictions_001 {
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
 ** @author   STF 409
 ** @version  $Rev: 150 $
 ** @purpose  1:15.8, Ensure that template(omit) is accepted with a concrete value.
 ** @verdict  pass accept, ttcn3verdict:pass
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Syn_1508_TemplateRestrictions_002 {
+17 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 150 $
 ** @purpose  1:15.8, Ensure that template(value) is accepted with value omitvalue.
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Syn_1508_TemplateRestrictions_003 {

type record ExampleType {
	integer a,
	boolean b optional
}

template(value) ExampleType exampleOmit := omit;

}
 No newline at end of file
+17 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 150 $
 ** @purpose  1:15.8, Ensure that template(value) is accepted with a concrete value.
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Syn_1508_TemplateRestrictions_004 {

type record ExampleType {
	integer a,
	boolean b optional
}

template(value) ExampleType exampleOmit := {1, true};

}
 No newline at end of file
+17 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 150 $
 ** @purpose  1:15.8, Ensure that template(present) is accepted with value omitvalue.
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Syn_1508_TemplateRestrictions_003 {

type record ExampleType {
	integer a,
	boolean b optional
}

template(present) ExampleType exampleOmit := omit;

}
 No newline at end of file
Loading