Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-15 08:54:33

0001 
0002 //              Copyright Catch2 Authors
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //   (See accompanying file LICENSE.txt or copy at
0005 //        https://www.boost.org/LICENSE_1_0.txt)
0006 
0007 // SPDX-License-Identifier: BSL-1.0
0008 #ifndef CATCH_INTERFACES_TEST_INVOKER_HPP_INCLUDED
0009 #define CATCH_INTERFACES_TEST_INVOKER_HPP_INCLUDED
0010 
0011 namespace Catch {
0012 
0013     class ITestInvoker {
0014     public:
0015         virtual void prepareTestCase();
0016         virtual void tearDownTestCase();
0017         virtual void invoke() const = 0;
0018         virtual ~ITestInvoker(); // = default
0019     };
0020 
0021 } // namespace Catch
0022 
0023 #endif // CATCH_INTERFACES_TEST_INVOKER_HPP_INCLUDED