| 4 | using namespace ftg; |
| 5 | |
| 6 | TEST(APIJsonLoader, PublicAPIJsonLoadP) { |
| 7 | std::string PublicAPIJsonPath = |
| 8 | "tests/resources/apiloader_input/public_api.json"; |
| 9 | APIJsonLoader *Loader = new APIJsonLoader(PublicAPIJsonPath); |
| 10 | |
| 11 | ASSERT_EQ(Loader->load().size(), 3); |
| 12 | } |
| 13 | |
| 14 | TEST(APIJsonLoaderDeathTest, NotExistPublicAPIJsonLoadN) { |
| 15 | std::string PublicAPIJsonPath = "not_exists_public_api.json"; |
nothing calls this directly
no test coverage detected