Home
last modified time | relevance | path

Searched refs:testRunnerProperties (Results 1 – 1 of 1) sorted by relevance

/external/vogar/test/vogar/target/
DTestRunnerRule.java37 private TestRunnerProperties testRunnerProperties; field in TestRunnerRule
41 testRunnerProperties = description.getAnnotation(TestRunnerProperties.class); in apply()
42 if (testRunnerProperties != null) { in apply()
44 setProperty(TestProperties.MONITOR_PORT, testRunnerProperties.monitorPort()); in apply()
45 String testClassOrPackage = treatEmptyAsNull(testRunnerProperties.testClassOrPackage()); in apply()
47 Class<?> testClass = testRunnerProperties.testClass(); in apply()
53 setProperty(TestProperties.RUNNER_TYPE, testRunnerProperties.runnerType().toString()); in apply()
54 setProperty(TestProperties.TIMEOUT, testRunnerProperties.timeout()); in apply()
60 return testRunnerProperties.testClass(); in testClass()