diff options
Diffstat (limited to 'ash/test/test_suite.h')
-rw-r--r-- | ash/test/test_suite.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ash/test/test_suite.h b/ash/test/test_suite.h new file mode 100644 index 0000000..5a32b69 --- /dev/null +++ b/ash/test/test_suite.h @@ -0,0 +1,28 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef ASH_TEST_TEST_SUITE_H_ +#define ASH_TEST_TEST_SUITE_H_ +#pragma once + +#include "base/compiler_specific.h" +#include "base/test/test_suite.h" + +namespace aura_shell { +namespace test { + +class AuraShellTestSuite : public base::TestSuite { + public: + AuraShellTestSuite(int argc, char** argv); + + protected: + // base::TestSuite: + virtual void Initialize() OVERRIDE; + virtual void Shutdown() OVERRIDE; +}; + +} // namespace test +} // namespace aura_shell + +#endif // ASH_TEST_TEST_SUITE_H_ |