ash_webui_test_suite.h 690 B

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