Package uk.co.brunella.osgi.bdt.junit.runner.model

Examples of uk.co.brunella.osgi.bdt.junit.runner.model.TestClass


    if (testClassAnnotation == null) {
      throw new InitializationError("OSGiBDTTest annotation is missing");
    }
    testClassName = testClass.getName();
    this.testClassAnnotation = testClassAnnotation;
    this.testClass = new TestClass(testClass);
    repositories = loadRepositories(testClassAnnotation.repositories());
    testClassDescription = createDescription(this.testClass, repositories);
   
    frameworkStarters = createFrameworkStarter(repositories, testClassAnnotation.framework());
    if (testBundleFile == null) {
View Full Code Here


    } catch (Exception e) {
      throw new RuntimeException(e);
    }
   
    try {
      osgiTestClass = new TestClass(osgiTestBundle.loadClass(testClassName));
    } catch (ClassNotFoundException e) {
      throw new RuntimeException(e);
    }
  }
View Full Code Here

TOP

Related Classes of uk.co.brunella.osgi.bdt.junit.runner.model.TestClass

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.