1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25

ash / webui / ash_webui_test_suite.h [blame]

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_WEBUI_ASH_WEBUI_TEST_SUITE_H_
#define ASH_WEBUI_ASH_WEBUI_TEST_SUITE_H_

#include "base/test/test_suite.h"

class AshWebUITestSuite : public base::TestSuite {
 public:
  AshWebUITestSuite(int argc, char** argv);

  AshWebUITestSuite(const AshWebUITestSuite&) = delete;
  AshWebUITestSuite& operator=(const AshWebUITestSuite&) = delete;

  ~AshWebUITestSuite() override;

 protected:
  // base::TestSuite:
  void Initialize() override;
  void Shutdown() override;
};

#endif  // ASH_WEBUI_ASH_WEBUI_TEST_SUITE_H_