1# Lint as: python2, python3 2# Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6from autotest_lib.client.bin import test 7 8 9class cellular_ValidateTestEnvironment(test.test): 10 """ 11 Verify that the test setup common to all other tests has no failures. 12 """ 13 version = 1 14 15 def run_once(self, test_env): 16 """ Runs the test once """ 17 with test_env: 18 self.test_env = test_env 19 # Do nothing else. This is enough to initialize and terminate the 20 # test environment. 21