use of coreVisitors.PathAnnotateClass in project L42 by ElvisResearchGroup.
the class TestCloneWithPath method test.
@Test
public void test() {
TestHelper.configureForTest();
ClassB cb1 = getClassB("cb1", _cb1);
ClassB expected = getClassB("expected", _expected);
ClassB result = (ClassB) cb1.accept(new PathAnnotateClass());
TestHelper.assertEqualExp(expected, result);
}
Aggregations