summaryrefslogtreecommitdiffstats
path: root/ios/web/test/web_test_suite.h
blob: 5ea67797b3ba5b845677c76be34eb9ef4997e619 (plain)
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
26
27
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_WEB_TEST_WEB_TEST_SUITE_H_
#define IOS_WEB_TEST_WEB_TEST_SUITE_H_

#include "base/test/test_suite.h"

namespace web {

class WebTestSuite : public base::TestSuite {
 public:
  WebTestSuite(int argc, char** argv);
  ~WebTestSuite() override;

 protected:
  void Initialize() override;

 private:

  DISALLOW_COPY_AND_ASSIGN(WebTestSuite);
};

}  // namespace web

#endif  // IOS_WEB_TEST_WEB_TEST_SUITE_H_