@Override
 protected void tearDown() throws Exception {
   // Delete the temp files
   for (File ref : mReferences.values()) {
     ref.delete();
   }
   mExecutionService.shutdown();
   // Remove the APK.
   mDevice.uninstallPackage(PACKAGE);
   super.tearDown();
 }
Exemple #2
0
 @Override
 protected void tearDown() throws Exception {
   mDevice.uninstallPackage(PACKAGE);
   super.tearDown();
 }
Exemple #3
0
 @Override
 protected void tearDown() throws Exception {
   super.tearDown();
   mDevice.uninstallPackage(PACKAGE);
   mReport.throwReportToHost();
 }