| 10 | namespace toft { |
| 11 | |
| 12 | TEST(SHA1Test, EmptyString) { |
| 13 | std::string test_str = ""; |
| 14 | EXPECT_EQ(SHA1::HexDigest(test_str), "da39a3ee5e6b4b0d3255bfef95601890afd80709"); |
| 15 | }; |
| 16 | |
| 17 | TEST(SHA1Test, LittleChanged) { |
| 18 | std::string test_str = "The quick brown fox jumps over the lazy dog"; |
nothing calls this directly
no outgoing calls
no test coverage detected