1 30 package org.objectweb.asm; 31 32 import junit.framework.TestSuite; 33 34 39 public class ClassWriterComputeMaxsTest extends AbstractTest { 40 41 public static TestSuite suite() throws Exception { 42 return new ClassWriterComputeMaxsTest().getSuite(); 43 } 44 45 public void test() throws Exception { 46 ClassReader cr = new ClassReader(is); 47 ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_MAXS); 48 cr.accept(cw, 0); 49 } 52 } 53 | Popular Tags |