1 // Copyright (c) 2011 The Chromium 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.
5 #ifndef APP_TEST_SUITE_H_
6 #define APP_TEST_SUITE_H_
9 #include "base/test/test_suite.h"
11 class AppTestSuite
: public base::TestSuite
{
13 AppTestSuite(int argc
, char** argv
);
14 virtual ~AppTestSuite();
17 virtual void Initialize();
18 virtual void Shutdown();
21 #endif // APP_TEST_SUITE_H_