1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-05-04 14:03:53 +00:00
Catch2/src/catch2/interfaces/catch_interfaces_testcase.cpp
Martin Hořeňovský 02ce0a2eec
Unify ITestCaseRegistry and TestRegistry
I also made a bunch of refactorings around the headers and includes
to simplify the main include path.
2023-03-21 11:30:19 +01:00

14 lines
367 B
C++

// Copyright Catch2 Authors
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
// SPDX-License-Identifier: BSL-1.0
#include <catch2/interfaces/catch_interfaces_testcase.hpp>
namespace Catch {
ITestInvoker::~ITestInvoker() = default;
}