Tinker9 70bd052 (Thu Nov 9 12:11:35 2023 -0800)
Loading...
Searching...
No Matches
test.h
1#pragma once
2
3#if __cplusplus < 201402L
4
5// Catch2 version 2.3.0
6// https://github.com/catchorg/Catch2/blob/v2.3.0/single_include/catch2/catch.hpp
7// #include <catch_2_3_0>
8
9// Catch2 version 2.9.1
10// https://github.com/catchorg/Catch2/blob/v2.9.1/single_include/catch2/catch.hpp
11// #include <catch_2_9_1>
12
13// Catch2 version 2.13.4
14// https://github.com/catchorg/Catch2/blob/v2.13.4/single_include/catch2/catch.hpp
15// #include <catch_2_13_4>
16
17// Catch2 version 2.13.8
18// https://github.com/catchorg/Catch2/blob/v2.13.8/single_include/catch2/catch.hpp
19// #include <catch_2_13_8>
20
21// Catch2 version 2.13.9
22// https://github.com/catchorg/Catch2/blob/v2.13.9/single_include/catch2/catch.hpp
23#include <catch_2_13_9>
24
25#else
26
27#include <catch2/catch_all.hpp>
28using namespace Catch;
29
30#endif