mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-11 13:43:54 +00:00
60 lines
2.2 KiB
C++
60 lines
2.2 KiB
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
|
|
#ifndef CATCH_TEST_CASE_REGISTRY_IMPL_HPP_INCLUDED
|
|
#define CATCH_TEST_CASE_REGISTRY_IMPL_HPP_INCLUDED
|
|
|
|
#include <catch2/interfaces/catch_interfaces_testcase.hpp>
|
|
#include <catch2/interfaces/catch_interfaces_config.hpp>
|
|
#include <catch2/internal/catch_unique_ptr.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace Catch {
|
|
|
|
class IConfig;
|
|
class ITestInvoker;
|
|
class TestCaseHandle;
|
|
class TestSpec;
|
|
|
|
std::vector<TestCaseHandle> sortTests( IConfig const& config, std::vector<TestCaseHandle> const& unsortedTestCases );
|
|
|
|
bool isThrowSafe( TestCaseHandle const& testCase, IConfig const& config );
|
|
|
|
std::vector<TestCaseHandle> filterTests( std::vector<TestCaseHandle> const& testCases, TestSpec const& testSpec, IConfig const& config );
|
|
std::vector<TestCaseHandle> const& getAllTestCasesSorted( IConfig const& config );
|
|
|
|
class TestRegistry : public ITestCaseRegistry {
|
|
public:
|
|
void registerTest( Detail::unique_ptr<TestCaseInfo> testInfo, Detail::unique_ptr<ITestInvoker> testInvoker );
|
|
|
|
std::vector<TestCaseInfo*> const& getAllInfos() const override;
|
|
std::vector<TestCaseHandle> const& getAllTests() const override;
|
|
std::vector<TestCaseHandle> const& getAllTestsSorted( IConfig const& config ) const override;
|
|
|
|
~TestRegistry() override; // = default
|
|
|
|
private:
|
|
std::vector<Detail::unique_ptr<TestCaseInfo>> m_owned_test_infos;
|
|
// Keeps a materialized vector for `getAllInfos`.
|
|
// We should get rid of that eventually (see interface note)
|
|
std::vector<TestCaseInfo*> m_viewed_test_infos;
|
|
|
|
std::vector<Detail::unique_ptr<ITestInvoker>> m_invokers;
|
|
std::vector<TestCaseHandle> m_handles;
|
|
mutable TestRunOrder m_currentSortOrder = TestRunOrder::Declared;
|
|
mutable std::vector<TestCaseHandle> m_sortedFunctions;
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
|
#endif // CATCH_TEST_CASE_REGISTRY_IMPL_HPP_INCLUDED
|