• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2017 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
5from autotest_lib.server import test
6
7
8class AtrusBaseTest(test.test):
9    """
10    Base class for Atrus enterprise tests.
11
12    AtrusBaseTest provides common setup and cleanup methods.
13    """
14
15    def initialize(self, host):
16        """
17        Initializes common test properties.
18
19        @param host: a host object representing the DUT.
20        """
21        super(AtrusBaseTest, self).initialize()
22        self._host = host
23
24