Home | History | Annotate | Download | only in android_DummyTest
      1 # Copyright 2015 The Chromium OS Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 import common
      6 from autotest_lib.server import test
      7 
      8 
      9 class android_DummyTest(test.test):
     10     """A dummy test to verify Android device can be accessible with adb."""
     11     version = 1
     12 
     13     def run_once(self, host=None):
     14         """A dummy test to verify Android device can be accessible with adb.
     15 
     16         Prerequisite: The DUT is in ADB mode.
     17 
     18         @param host: host object representing the device under test.
     19         """
     20         self.host = host
     21         self.host.adb_run('shell ls')
     22