chromeos_components_test_suite.h 826 B

1234567891011121314151617181920212223242526
  1. // Copyright 2020 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 CHROMEOS_COMPONENTS_CHROMEOS_COMPONENTS_TEST_SUITE_H_
  5. #define CHROMEOS_COMPONENTS_CHROMEOS_COMPONENTS_TEST_SUITE_H_
  6. #include "base/test/test_suite.h"
  7. class ChromeosComponentsTestSuite : public base::TestSuite {
  8. public:
  9. ChromeosComponentsTestSuite(int argc, char** argv);
  10. ChromeosComponentsTestSuite(const ChromeosComponentsTestSuite&) = delete;
  11. ChromeosComponentsTestSuite& operator=(const ChromeosComponentsTestSuite&) =
  12. delete;
  13. ~ChromeosComponentsTestSuite() override;
  14. protected:
  15. // base::TestSuite:
  16. void Initialize() override;
  17. void Shutdown() override;
  18. };
  19. #endif // CHROMEOS_COMPONENTS_CHROMEOS_COMPONENTS_TEST_SUITE_H_