-
Bug
-
Resolution: Won't Do
-
Major
-
4.0.0.Alpha4
In the same test, I was using the `createNodeWithContentFromFile` method to sequence multiple files. Here is code that can be run in the `ClassTypeSequencerTest` that will reproduce error:
@Test public void shouldReproduceError() throws Exception { for (int i = 0; i < 3; ++i) { createNodeWithContentFromFile("myclassannotation" + i + ".java", "org/acme/annotation/MyClassAnnotation.java"); createNodeWithContentFromFile("mypackageannotation" + i + ".java", "org/acme/annotation/MyPackageAnnotation.java"); createNodeWithContentFromFile("mysource" + i + ".java", "org/acme/MySource.java"); } }