congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
TestRunnerUtils
Code IndexAdd Tabnine to your IDE (free)

How to use
TestRunnerUtils
in
ch.inftec.ju.ee.test

Best Java code snippets using ch.inftec.ju.ee.test.TestRunnerUtils (Showing top 6 results out of 315)

origin: ch.inftec.ju/ju-ee-testing

@Before
public void init() {
  this.serviceLocator = TestRunnerUtils.getRemoteServiceLocator();
  this.testRunnerFacade = TestRunnerUtils.getTestRunnerFacade();
}

origin: ch.inftec.ju/ju-ee-testing

  /**
   * Looks up a TestRunnerFacade using a remote JNDI service locator, configured by JU property files.
   * @return TestRunnerFacade instance
   */
  public static synchronized TestRunnerFacade getTestRunnerFacade() {
    if (testRunnerFacade == null) {
      testRunnerFacade = getRemoteServiceLocator().lookup(TestRunnerFacade.class);
    }
    return testRunnerFacade;
  }
}
origin: ch.inftec.ju/ju-ee-testing

@Override
public void evaluate() throws Throwable {
  try {
    this.doEvaluation(TestRunnerUtils.getTestRunnerFacade(), this.context);
  } catch (Throwable t) {
    throw RemoteUtils.getActualThrowable(t);
  }
}

origin: ch.inftec.ju/ju-util-ee

  /**
   * Looks up a TestRunnerFacade using a remote JNDI service locator, configured by JU property files.
   * @return TestRunnerFacade instance
   */
  public static synchronized TestRunnerFacade getTestRunnerFacade() {
    if (testRunnerFacade == null) {
      testRunnerFacade = getRemoteServiceLocator().lookup(TestRunnerFacade.class);
    }
    return testRunnerFacade;
  }
}
origin: ch.inftec.ju/ju-util-ee

@Override
public void evaluate() throws Throwable {
  try {
    this.doEvaluation(TestRunnerUtils.getTestRunnerFacade(), this.context);
  } catch (Throwable t) {
    throw RemoteUtils.getActualThrowable(t);
  }
}

origin: ch.inftec.ju/ju-util-ee

@Before
public void init() {
  this.serviceLocator = TestRunnerUtils.getRemoteServiceLocator();
  this.testRunnerFacade = TestRunnerUtils.getTestRunnerFacade();
}

ch.inftec.ju.ee.testTestRunnerUtils

Javadoc

Contains helper functions related to remote tests.

Provides cached instances of RemoteServiceLocator and TestRunnerFacade. All classes requiring access to these instances should use the cached instances to optimize resource usage.

Most used methods

  • getRemoteServiceLocator
    Gets an instance of a remote JndiServiceLocator, configured by JU property files.
  • getTestRunnerFacade
    Looks up a TestRunnerFacade using a remote JNDI service locator, configured by JU property files.

Popular in Java

  • Making http requests using okhttp
  • getSharedPreferences (Context)
  • runOnUiThread (Activity)
  • setContentView (Activity)
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Notification (javax.management)
  • JTable (javax.swing)
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now