OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 |
| 5 #ifndef IOS_CHROME_TEST_IOS_CHROME_UNIT_TEST_SUITE_H_ |
| 6 #define IOS_CHROME_TEST_IOS_CHROME_UNIT_TEST_SUITE_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" |
| 10 #include "base/test/test_suite.h" |
| 11 |
| 12 // Test suite for unit tests. |
| 13 class IOSChromeUnitTestSuite : public base::TestSuite { |
| 14 public: |
| 15 IOSChromeUnitTestSuite(int argc, char** argv); |
| 16 ~IOSChromeUnitTestSuite() override; |
| 17 |
| 18 // base::TestSuite overrides: |
| 19 void Initialize() override; |
| 20 |
| 21 private: |
| 22 DISALLOW_COPY_AND_ASSIGN(IOSChromeUnitTestSuite); |
| 23 }; |
| 24 |
| 25 #endif // IOS_CHROME_TEST_IOS_CHROME_UNIT_TEST_SUITE_H_ |
OLD | NEW |