| 85 | } |
| 86 | |
| 87 | std::string SrcGenerator::genSignature(const std::string &TestName) { |
| 88 | // Remove starting empty line in template |
| 89 | auto Signature = SignatureTemplate.substr(1); |
| 90 | util::replaceStrAll(Signature, "${UT_NAME}", TestName); |
| 91 | util::replaceStrAll(Signature, "${VERSION}", FTG_VERSION); |
| 92 | return Signature; |
| 93 | } |
nothing calls this directly
no test coverage detected