Package com.artemis.util

Examples of com.artemis.util.SimpleProfiler


        ProfiledSystem.class.getAnnotation(Profile.class));
   
    world.process();
    world.process();
   
    SimpleProfiler simpleProfiler = SimpleProfiler.lastInstance;
    Assert.assertNotNull(simpleProfiler);
   
    simpleProfiler.validate();
   
    Assert.assertEquals(2, simpleProfiler.startCount);
    Assert.assertEquals(2, simpleProfiler.stopCount);
   
    world.process();
View Full Code Here


    Assert.assertNull(
        ProfiledSystemB.class.getAnnotation(Profile.class));
   
    world.process();
   
    SimpleProfiler simpleProfiler = SimpleProfiler.lastInstance;
    Assert.assertNotNull(simpleProfiler);
   
    simpleProfiler.validate();
   
    Assert.assertEquals(1, simpleProfiler.startCount);
    Assert.assertEquals(1, simpleProfiler.stopCount);
   
    world.process();
View Full Code Here

TOP

Related Classes of com.artemis.util.SimpleProfiler

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.