1# Copyright 2016 The Chromium Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5from pylib.base import environment 6 7 8class LocalMachineEnvironment(environment.Environment): 9 10 def __init__(self, _args, output_manager, _error_func): 11 super().__init__(output_manager) 12 13 #override 14 def SetUp(self): 15 pass 16 17 #override 18 def TearDown(self): 19 pass 20