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_SANDBOX_TEST_RUNNER_H_ 6 #define SANDBOX_LINUX_TESTS_SANDBOX_TEST_RUNNER_H_ 7 8 #include "base/basictypes.h" 9 10 namespace sandbox { 11 12 // A simple "runner" class to implement tests. 13 class SandboxTestRunner { 14 public: 15 SandboxTestRunner(); 16 virtual ~SandboxTestRunner(); 17 18 virtual void Run() = 0; 19 20 // Override to decide whether or not to check for leaks with LSAN 21 // (if built with LSAN and LSAN is enabled). 22 virtual bool ShouldCheckForLeaks() const; 23 24 private: 25 DISALLOW_COPY_AND_ASSIGN(SandboxTestRunner); 26 }; 27 28 } // namespace sandbox 29 30 #endif // SANDBOX_LINUX_TESTS_SANDBOX_TEST_RUNNER_H_ 31