1 #include "app.hpp" 2 #include "redfish.hpp" 3 4 #include <boost/asio/io_context.hpp> 5 6 #include <memory> 7 8 #include <gtest/gtest.h> 9 10 namespace redfish 11 { 12 namespace 13 { 14 15 TEST(Redfish, PathsShouldValidate) 16 { 17 auto io = std::make_shared<boost::asio::io_context>(); 18 crow::App app(io); 19 20 RedfishService redfish(app); 21 22 app.validate(); 23 } 24 25 } // namespace 26 } // namespace redfish 27