PiRSquared17 / synoptic

Automatically exported from code.google.com/p/synoptic
0 stars 0 forks source link

Dependent Tests Bug In Synoptic #389

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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