s2ga/tests/test.cpp
2025-03-08 20:37:26 +03:00

10 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());
}