Commit 9720d74f authored by Martti Käärik's avatar Martti Käärik
Browse files

Declare special value data-use variables #131 (actual solution will be provided by #114)

parent f711c9de
Loading
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -1906,11 +1906,13 @@ public class JUnitTestGenerator extends Renderer {
				// Time constraints have their own block
				continue;

			} else if (e instanceof SpecialValueUse) {
				// Special values cannot be declared in Java
				continue;

			}
//			else if (e instanceof SpecialValueUse) {
//				// Special values cannot be declared in Java
//				// ...but we still need a solution for them, so declare now and the solution will come
//				continue;
//
//			}

			declareDataUse(e, dataUseVariables, prefix);
		}