-
Notifications
You must be signed in to change notification settings - Fork 23
Dependent Tests Bug In Synoptic #389
Copy link
Copy link
Open
Description
Running all JUnit tests together in Synoptic will result in assertion failure
due to dependent test bug in TraceParserTests.parseOutOfOrderMultipleRelation,
line 1036 at the assertion:
assertTrue(expectedGraph.equalsWith(graph,
new IBoolBinary<EventNode, EventNode>() {
@Override
public boolean eval(EventNode a, EventNode b) {
return (a.getEvent().equals(b.getEvent()));
}
}));
Running only TraceParserTests will allow this test to pass without problem.
Original issue reported on code.google.com by bobyan...@gmail.com on 12 Oct 2014 at 3:31
Reactions are currently unavailable