Home
last modified time | relevance | path

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

/platform_testing/libraries/health/rules/tests/src/android/platform/test/rule/
DDex2oatPressureRuleTest.java93 .runCompileCommand(any(String.class), any(String.class)); in setUp()
104 verify(rule, times(1)).runCompileCommand(packageName, Dex2oatPressureRule.SPEED_FILTER); in testInvokesCompilation()
118 .runCompileCommand(compiledPackages.capture(), any(String.class)); in testInvokesCompilationCyclically()
168 .runCompileCommand( in testNoAdditionalCompilationIsTriggeredAfterTestFinishes()
180 .runCompileCommand(compiledPackagesWhenRuleReturns.capture(), any(String.class)); in testNoAdditionalCompilationIsTriggeredAfterTestFinishes()
194 verify(rule, atLeastOnce()).runCompileCommand(eq(pkg), any(String.class)); in testFailedCompilationDoesNotBlockOtherCompilations()
247 verify(rule, atLeastOnce()).runCompileCommand(any(String.class), eq(filter)); in testValidCompilationFilters()
290 verify(rule, never()).runCompileCommand(any(String.class), any(String.class)); in testDisable()
308 verify(rule, atLeastOnce()).runCompileCommand(compiledInTest1.capture(), any(String.class)); in testMultipleTestsParsePackageNamesIndependently()
316 .runCompileCommand(compiledInBothTests.capture(), any(String.class)); in testMultipleTestsParsePackageNamesIndependently()
[all …]
/platform_testing/libraries/health/rules/src/android/platform/test/rule/
DDex2oatPressureRule.java169 protected void runCompileCommand(String pkg, String filter) { in runCompileCommand() method in Dex2oatPressureRule
209 runCompileCommand(pkg, mCompilationFilter); in run()