Commit 2b3d86ad authored by zeiss's avatar zeiss
Browse files

No commit message

No commit message
parent 4643c353
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev$
 ** @purpose  1:8.3, Ensure that the verdict returned from a test case to the control-part is in fact the verdict of the component. The result of the last test case execution corresponds to the overall test verdict. 
 ** @purpose  1:8.3, Ensure that the verdict returned from a test case to the control-part does not influence the execution of a second test case. The result of the last test case execution corresponds to the overall test verdict. 
 ** @verdict  pass ttcn3verdict:pass
 *****************************************************************/

@@ -14,10 +14,10 @@ testcase Syn_0803_ModuleControlPart_001() runs on GeneralComp {
}

testcase Syn_0803_ModuleControlPart_001_second(verdicttype p_passthroughVerdict) runs on GeneralComp {
	if (p_passthroughVerdict == getverdict) {
		setverdict(pass);
	} else {
	if ((p_passthroughVerdict == getverdict) and (getverdict == none) ) { // verdict should be none.
		setverdict(fail);
	} else {
		setverdict(pass);
	}
}