| 12 | }; |
| 13 | |
| 14 | TEST_F(CPPClassMethodNameTest, getClassNameWithNamespaceWithFullMethodNameP) { |
| 15 | std::string ans = "testNamespace1::testNamespace2::testClass"; |
| 16 | std::string ret = ftg::util::getClassNameWithNamespace(FullMethodName); |
| 17 | ASSERT_EQ(ret, ans); |
| 18 | } |
| 19 | |
| 20 | TEST_F(CPPClassMethodNameTest, getClassNameWithNamespaceWithMethodNameOnlyN) { |
| 21 | std::string ans = ""; |
nothing calls this directly
no test coverage detected