perf_test_suite.h 513 B

12345678910111213141516171819202122
  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.
  4. #ifndef BASE_TEST_PERF_TEST_SUITE_H_
  5. #define BASE_TEST_PERF_TEST_SUITE_H_
  6. #include "base/test/test_suite.h"
  7. namespace base {
  8. class PerfTestSuite : public TestSuite {
  9. public:
  10. PerfTestSuite(int argc, char** argv);
  11. void Initialize() override;
  12. void Shutdown() override;
  13. };
  14. } // namespace base
  15. #endif // BASE_TEST_PERF_TEST_SUITE_H_