Commit 93b91237 authored by zeiss's avatar zeiss
Browse files

No commit message

No commit message
parent 25d655c5
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -21,7 +21,9 @@ testcase TC_Sem_1508_TemplateRestrictions_003() runs on GeneralComp {
	
	v_omit := exampleValueOptional;
	
	if (match(v_omit,{1, omit})) {
	if ((valueof(v_omit.a) == 1) and
	    (valueof(v_omit.b) == omit)
	   ) {
		setverdict(pass);
	} else {
		setverdict(fail);
+3 −1
Original line number Diff line number Diff line
@@ -21,7 +21,9 @@ testcase TC_Sem_1508_TemplateRestrictions_005() runs on GeneralComp {
	
	v_value := exampleValue;
	
	if (match(v_value, {1,true})) {
	if ((valueof(v_value.a) == 1) and
	    (valueof(v_value.b) == true)
	    ) {
		setverdict(pass);
	} else {
		setverdict(fail);
+3 −1
Original line number Diff line number Diff line
@@ -21,7 +21,9 @@ testcase TC_Sem_1508_TemplateRestrictions_007() runs on GeneralComp {
	
	v_present := exampleOmit;
	
	if (match(v_present, {1,omit})) {
	if ((valueof(v_present.a) == 1) and
	    (valueof(v_present.b) == omit)
	   ) {
		setverdict(pass);
	} else {
		setverdict(fail);
+3 −1
Original line number Diff line number Diff line
@@ -21,7 +21,9 @@ testcase TC_Sem_1508_TemplateRestrictions_008() runs on GeneralComp {
	
	v_present := exampleValue;
	
	if (match(v_present,{1, true})) {
	if ((valueof(v_present.a) == 1) and
	    (valueof(v_present.b) == true)
	   ) {
		setverdict(pass);
	} else {
		setverdict(fail);
+3 −1
Original line number Diff line number Diff line
@@ -21,7 +21,9 @@ testcase TC_Sem_1508_TemplateRestrictions_009() runs on GeneralComp {
	
	v_present := examplePresent;
	
	if (match(v_present, {1,true})) {
	if ((valueof(v_present.a) == 1) and
	    (valueof(v_present.b) == true)
	   ) {
		setverdict(pass);
	} else {
		setverdict(fail);
Loading