Commit 20782a72 authored by Martti Käärik's avatar Martti Käärik
Browse files

Verdict -> VerdictImpl

parent e233bba2
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -883,7 +883,7 @@ public class JUnitTestGenerator extends Renderer {
				if (verdict != null)
					write(((Assertion) b).getOtherwise(), dataUseVariables);
				else
					append("Verdict.fail");
					append("VerdictImpl.fail");
				line(");");

				writeNotification(b, false);
@@ -1774,7 +1774,7 @@ public class JUnitTestGenerator extends Renderer {
			if (m == null) {
				DataType t = dataInstance.getDataType();
				if (isVerdict(t)) {
					append("Verdict." + dataInstance.getName());
					append("VerdictImpl." + dataInstance.getName());

				} else
					throw new RuntimeException("Mapping missing for: " + dataInstance.getQualifiedName());