Package org.jboss.profiler.fileProcessor

Examples of org.jboss.profiler.fileProcessor.SpyRegisterBeginThread


          boolean result = reader.readSpyRegister();
          assertTrue(result);

          assertTrue("Expected to be an threadStart",reader.getCurrentRegister() instanceof SpyRegisterBeginThread);

          SpyRegisterBeginThread tmp = (SpyRegisterBeginThread)reader.getCurrentRegister();

          assertEquals("threadId",1,tmp.getThreadId());
          assertEquals("envId",1,tmp.getEnvId());
          assertEquals("name","test"+i,tmp.getThreadName());

          result = reader.readSpyRegister();
          assertTrue(result);

          assertTrue("Expected to be an threadStart",reader.getCurrentRegister() instanceof SpyRegisterEndThread);
View Full Code Here

TOP

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

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.