Home
last modified time | relevance | path

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

/frameworks/base/services/tests/PackageManagerServiceTests/unit/src/com/android/server/pm/test/verify/domain/
DDomainVerificationEnforcerTest.kt289 fun runMethod( in <lambda>() method
396 INTERNAL_UIDS.forEach { runMethod(target, it, visible) } in <lambda>()
397 assertFails { runMethod(target, VERIFIER_UID, visible) } in <lambda>()
399 runMethod(target, NON_VERIFIER_UID, visible) in <lambda>()
423 INTERNAL_UIDS.forEach { runMethod(target, it) } in <lambda>()
427 assertFails { runMethod(target, VERIFIER_UID) } in <lambda>()
428 assertFails { runMethod(target, NON_VERIFIER_UID) } in <lambda>()
432 runMethod(target, VERIFIER_UID) in <lambda>()
437 assertFails { runMethod(target, NON_VERIFIER_UID) } in <lambda>()
441 assertFails { runMethod(target, NON_VERIFIER_UID) } in <lambda>()
[all …]
/frameworks/base/test-base/src/android/test/
DInstrumentationTestCase.java195 runMethod(testMethod, tolerance, repetitive); in runTest()
205 runMethod(method, runCount, isRepetitive); in runTest()
210 private void runMethod(Method runMethod, int tolerance) throws Throwable { in runMethod() method in InstrumentationTestCase
211 runMethod(runMethod, tolerance, false); in runMethod()
214 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable { in runMethod() method in InstrumentationTestCase
220 runMethod.invoke(this, (Object[]) null); in runMethod()
/frameworks/base/core/tests/utillib/src/android/test/
DBandwidthTestCase.java80 runMethod(testMethod, tolerance, repetitive); in runTest()
103 runMethod(method, 1, false); in runTest()
112 runMethod(method, runCount, isRepetitive); in runTest()
116 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable { in runMethod() method in BandwidthTestCase
123 runMethod.invoke(this, (Object[]) null); in runMethod()
/frameworks/base/test-junit/src/junit/framework/
DTestCase.java153 Method runMethod= null; in runTest() local
159 runMethod= getClass().getMethod(fName, (Class[])null); in runTest()
163 if (!Modifier.isPublic(runMethod.getModifiers())) { in runTest()
168 runMethod.invoke(this); in runTest()
/frameworks/base/test-base/hiddenapi/src/android/test/
DInstrumentationTestCase.java36 private void runMethod(Method runMethod, int tolerance) throws Throwable { in runMethod() argument