Commit 8d8077f8 authored by Matthias Simon's avatar Matthias Simon
Browse files

Remove invalid tests for the not implemented function

Test Sem_160106_the_not_implemented_function_005 verified that `???`
always yields the same results.
However, there's no such requirement specified. Furthermore, `???` may
throw an error when executed, which is also not covered by this test.
parent 9ae8c5c6
Loading
Loading
Loading
Loading
Loading
+0 −29
Original line number Diff line number Diff line
// @author   TTF T023
// @purpose  1:16.1.6, Ensure implementation does not change during tests execution
// @verdict  pass accept, ttcn3verdict:pass

//NOTE TTF T032: Test not valid, will be deleted

module Sem_160106_the_not_implemented_function_005 {

//type component GeneralComp {}

//function @deterministic f() return charstring {
//	return ???;
//}

//testcase TC_Sem_160106_the_not_implemented_function_005() runs on GeneralComp {
//	var charstring x := f();
//	var charstring y := f();
//	if (x == y) {
//		setverdict(pass);
//	} else {
//		setverdict(fail, x & " != " & y);
//	}
//}

//control {
//	execute(TC_Sem_160106_the_not_implemented_function_005());
//}

}