mirror of
https://github.com/BlackMATov/curly.hpp.git
synced 2025-12-15 12:19:47 +07:00
20 lines
554 B
C++
20 lines
554 B
C++
/*******************************************************************************
|
|
* This file is part of the "https://github.com/blackmatov/curly.hpp"
|
|
* For conditions of distribution and use, see copyright notice in LICENSE.md
|
|
* Copyright (C) 2019, by Matvey Cherevko (blackmatov@gmail.com)
|
|
******************************************************************************/
|
|
|
|
#define CATCH_CONFIG_FAST_COMPILE
|
|
#include <catch2/catch.hpp>
|
|
|
|
#include <curly.hpp/curly.hpp>
|
|
namespace cur = curly_hpp;
|
|
|
|
namespace
|
|
{
|
|
}
|
|
|
|
TEST_CASE("curly"){
|
|
REQUIRE(true);
|
|
}
|