Package org.jboss.arquillian.performance.annotation

Examples of org.jboss.arquillian.performance.annotation.PerformanceTest


      parsePerformanceRules(event.getTestClass());
   }
  
   public void parsePerformanceRules(TestClass testClass)
   {
      PerformanceTest performanceTest = (PerformanceTest) testClass.getAnnotation(PerformanceTest.class);
      if(performanceTest != null)
      {
         PerformanceClassResult classPerformance =
            new PerformanceClassResult(performanceTest, testClass.getName());
        
View Full Code Here


      parsePerformanceRules(event.getTestClass());
   }
  
   public void parsePerformanceRules(TestClass testClass)
   {
      PerformanceTest performanceTest = (PerformanceTest) testClass.getAnnotation(PerformanceTest.class);
      if(performanceTest != null)
      {
         PerformanceClassResult classPerformance =
            new PerformanceClassResult(performanceTest, testClass.getName());
        
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.performance.annotation.PerformanceTest

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.