11 lines
209 B
C++
11 lines
209 B
C++
|
#include "../s2ga.hpp"
|
||
|
#include <catch2/catch_all.hpp>
|
||
|
#include <catch2/catch_test_macros.hpp>
|
||
|
#include <iostream>
|
||
|
|
||
|
TEST_CASE("Should pass")
|
||
|
{
|
||
|
std::cout << "HI" << std::endl;
|
||
|
REQUIRE_NOTHROW(foo());
|
||
|
}
|