ModelInference / synoptic

Inferring models of systems from observations of their behavior
Other
81 stars 25 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