Home
last modified time | relevance | path

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

/tools/tradefederation/contrib/tests/src/com/android/scenario/
DAppSetupTest.java83 startsWith(String.format(AppSetup.KILL_APP_COMMAND_TEMPLATE, ""))); in testKillAppsOption()
85 .executeShellCommand(eq(String.format(AppSetup.KILL_APP_COMMAND_TEMPLATE, "app1"))); in testKillAppsOption()
87 .executeShellCommand(eq(String.format(AppSetup.KILL_APP_COMMAND_TEMPLATE, "app2"))); in testKillAppsOption()
/tools/tradefederation/contrib/src/com/android/scenario/
DAppSetup.java51 static final String KILL_APP_COMMAND_TEMPLATE = "am force-stop %s"; field in AppSetup
75 getDevice().executeShellCommand(String.format(KILL_APP_COMMAND_TEMPLATE, packageName)); in run()