1# Copyright (c) 2009 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.bin import unit_test_server 6 7class example_UnitTestServer(unit_test_server.unit_test_server): 8 version = 1 9 client_test = 'example_UnitTest' 10 test_files = ['main.cc'] 11