#include "UCI.hpp" #include #define LATENCY 2000 using namespace uciadapter; TEST_CASE("Stockfish Initialisation", "[stockfish/init]") { // Using bad engine path shoud raise an exception REQUIRE_THROWS([&]() { UCI("./random_path_zlkdejdlk"); }()); REQUIRE_NOTHROW([&]() { UCI("./stockfish_engine"); }()); UCI u("./stockfish_engine"); REQUIRE(u.GetName() == "Stockfish 14.1"); REQUIRE(u.GetAuthor() == "the Stockfish developers (see AUTHORS file)"); std::vector