Package org.jboss.profiler.fileProcessor

Examples of org.jboss.profiler.fileProcessor.SpyRegisterLoadClass


          assertTrue(result);
          if (!result) return;

          assertTrue("Expected to be an loadClass",reader.getCurrentRegister() instanceof SpyRegisterLoadClass);

          SpyRegisterLoadClass object = (SpyRegisterLoadClass)reader.getCurrentRegister();

          assertEquals("classId",object.getClassId(),1);
          assertEquals("time",object.getTime_t(),1);
          assertEquals("className",object.getClassName(),this.getClass().getName());

          for (int j=0;j<10;j++) {
              result = reader.readSpyRegister();
              assertTrue(result);
              assertTrue("instanceof SpyRegisterLoadMethod", reader.getCurrentRegister() instanceof SpyRegisterLoadMethod);
View Full Code Here

TOP

Related Classes of org.jboss.profiler.fileProcessor.SpyRegisterLoadClass

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.