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.
6 class TestInstance(object):
9 This is expected to handle all logic that is test-type specific but
10 independent of the environment or device.
14 - instrumentation tests
21 raise NotImplementedError
24 raise NotImplementedError
27 raise NotImplementedError
33 def __exit__(self
, _exc_type
, _exc_val
, _exc_tb
):