1 # Copyright 2014 The Chromium 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.
7 """An execution of a particular test on a particular device.
9 This is expected to handle all logic that is specific to the combination of
10 environment and test type.
14 - local instrumentation tests
17 def __init__(self
, env
, test_instance
):
19 self
._test
_instance
= test_instance
21 def TestPackage(self
):
22 raise NotImplementedError
25 raise NotImplementedError
28 raise NotImplementedError
31 raise NotImplementedError
37 def __exit__(self
, exc_type
, exc_val
, exc_tb
):