1File overview.html in the current directory gives a very brief 2overview of this project. It also appears in the "Overview" 3section of the Javadoc API documentation. 4 5 6Test cases are split up over two directories: 7 8src/annotations/tests/classfile/cases/ 9test/annotations/tests/classfile/cases/ 10 11See file test/annotations/tests/classfile/AnnotationsTest.java for 12some documentation of the testing framework. 13 14TODO: there are currently two "golden" class files: the un-annoted file 15and the expected output after inserting annotations. 16Additionally, we could compare: 17Unannotated .java --> javac --> .class --> AFU insert into .class --> .class 18Unannotated .java --> AFU insert into .java --> javac --> .class 19that is, compare the result of inserting the annotations directly 20into the bytecode versus inserting into the source code and compiling. 21