1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-05 16:31:01 +02:00

respect most review comments

no default cxx language settings
install fmt
link against fmt::fmt
export dependency too if not needed
...
This commit is contained in:
ClausKlein 2021-02-12 16:36:19 +01:00
parent eedcb6f24e
commit 55fe93a2c3
5 changed files with 29 additions and 41 deletions

View file

@ -24,8 +24,3 @@ TEST_CASE("Greeter version") {
CHECK(std::string(GREETER_VERSION) == std::string("1.0"));
#endif
}
TEST_CASE("Greeter date") {
const greeter::Greeter greeter("Tests");
CHECK(greeter.getIsoDate() == std::string("03:15:30"));
}