# Minimal test harness for oatpp-authkit. # # Adds plain executable tests linked against the INTERFACE library and oatpp. # No third-party test framework — assertions use and a tiny REQUIRE # macro so the suite stays portable and dependency-free. find_package(oatpp REQUIRED) add_executable(test_negotiation test_negotiation.cpp) target_link_libraries(test_negotiation PRIVATE oatpp::authkit oatpp::oatpp) add_test(NAME negotiation COMMAND test_negotiation)