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.
5 #ifndef SANDBOX_LINUX_TESTS_SANDBOX_TEST_RUNNER_H_
6 #define SANDBOX_LINUX_TESTS_SANDBOX_TEST_RUNNER_H_
8 #include "base/basictypes.h"
12 // A simple "runner" class to implement tests.
13 class SandboxTestRunner
{
16 virtual ~SandboxTestRunner();
18 virtual void Run() = 0;
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;
25 DISALLOW_COPY_AND_ASSIGN(SandboxTestRunner
);
28 } // namespace sandbox
30 #endif // SANDBOX_LINUX_TESTS_SANDBOX_TEST_RUNNER_H_