*/
@Test
public void testParse_String_ClassPath() throws Exception {
System.out.println("method> parse(String, ClassPath)");
ClassFileParser cfparser = new ClassFileParser();
String classname = "gov.nasa.jpf.autodoc.types.parser.ClassFileParser";
ClassPath classpath = new ClassPath();
classpath.addPathName("build/main");
cfparser.parse(classname, classpath);
assertFalse(cfparser.getClassInfo().getName().isEmpty());
System.out.print(" [0] class: " + cfparser.getClassInfo().getName());
//--- No assertion for superClsName. It could be empty.
assertFalse(cfparser.getClassInfo().getFlags() == -1);
System.out.println(" | flags: " + cfparser.getClassInfo().getFlags());
//--- No assertion for interfaces list . It could be empty.
//--- No assertion for methods list. It could be empty.
//--- No assertion for layer. It could be empty.
}