Home
last modified time | relevance | path

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

/platform_testing/libraries/health/runners/longevity/platform/src/android/platform/test/longevity/
DLongevityClassRunner.java155 List<FrameworkMethod> allBeforeMethods = new ArrayList<>(); in withBefores() local
156 allBeforeMethods.addAll(getTestClass().getAnnotatedMethods(BeforeClass.class)); in withBefores()
161allBeforeMethods.addAll(getTestClass().getAnnotatedMethods(Microbenchmark.NoMetricBefore.class)); in withBefores()
162 allBeforeMethods.addAll(getTestClass().getAnnotatedMethods(Before.class)); in withBefores()
163 return allBeforeMethods.isEmpty() in withBefores()
165 : addRunBefores(statement, allBeforeMethods, target); in withBefores()