s2ga/tests/test.cpp

11 lines
209 B
C++
Raw Normal View History

2025-03-08 20:37:26 +03:00
#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());
}