-
Task
-
Resolution: Won't Do
-
Major
-
None
-
7.3.0.Final
-
NEW
-
NEW
The testclass contains methods shown bellow. There is potential error in tests that expect checkMarshallingUsingDsl will behave differently from checkMarshalling. This checkMarshallingUsingDsl should be removed and tests which use it should be rewritten.
private void checkMarshalling(String expected, RuleModel m) { String drl = ruleModelPersistence.marshal(m); assertNotNull(drl); if (expected != null) { assertEqualsIgnoreWhitespace(expected, drl); } } private void checkMarshallingUsingDsl(String expected, RuleModel m) { String drl = ruleModelPersistence.marshal(m); assertNotNull(drl); if (expected != null) { assertEqualsIgnoreWhitespace(expected, drl); } }