OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 SANDBOX_LINUX_TESTS_TEST_UTILS_H_ |
| 6 #define SANDBOX_LINUX_TESTS_TEST_UTILS_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 |
| 10 namespace sandbox { |
| 11 |
| 12 // This class provide small helpers to help writing tests. |
| 13 class TestUtils { |
| 14 public: |
| 15 static bool CurrentProcessHasChildren(); |
| 16 |
| 17 private: |
| 18 DISALLOW_IMPLICIT_CONSTRUCTORS(TestUtils); |
| 19 }; |
| 20 |
| 21 } // namespace sandbox |
| 22 |
| 23 #endif // SANDBOX_LINUX_TESTS_TEST_UTILS_H_ |
OLD | NEW |