1 30 package org.objectweb.asm; 31 32 import junit.framework.TestSuite; 33 34 import org.objectweb.asm.commons.EmptyVisitor; 35 36 41 public class ClassReaderTest extends AbstractTest { 42 43 public static TestSuite suite() throws Exception { 44 return new ClassReaderTest().getSuite(); 45 } 46 47 public void test() throws Exception { 48 new ClassReader(is).accept(new EmptyVisitor(), false); 49 } 50 } 51 | Popular Tags |