mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-17 11:12:25 +01:00
24 lines
582 B
C++
24 lines
582 B
C++
/*
|
|
* Created by Phil on 24/11/2015.
|
|
* Copyright 2015 Two Blue Cubes Ltd. All rights reserved.
|
|
*
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
|
|
#include "catch.hpp"
|
|
|
|
#include "../include/internal/catch_suppress_warnings.h"
|
|
#include "../include/internal/catch_thread_context.hpp"
|
|
|
|
#define THREADED_SECTION SECTION
|
|
|
|
TEST_CASE( "multithreaded sections" ) {
|
|
|
|
|
|
THREADED_SECTION( "test" ) {
|
|
Catch::ThreadContext tctx( Catch::getGlobalRunContext() );
|
|
|
|
}
|
|
}
|