mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-12-17 20:14:36 +03:00
Doxygen support (#43)
* init doxygen * fix format * use readme as main file * don't generate LaTeX * automatically use correct project version and update html settings * minify Doxyfile * add documentation * add workflow to publish documentation * remove mac comment * formatting * fix typo * grammar
This commit is contained in:
@@ -4,10 +4,10 @@
|
||||
TEST_CASE("Greeter") {
|
||||
using namespace greeter;
|
||||
|
||||
Greeter greeter("World");
|
||||
Greeter greeter("Tests");
|
||||
|
||||
CHECK(greeter.greet(LanguageCode::EN) == "Hello, World!");
|
||||
CHECK(greeter.greet(LanguageCode::DE) == "Hallo World!");
|
||||
CHECK(greeter.greet(LanguageCode::ES) == "¡Hola World!");
|
||||
CHECK(greeter.greet(LanguageCode::FR) == "Bonjour World!");
|
||||
CHECK(greeter.greet(LanguageCode::EN) == "Hello, Tests!");
|
||||
CHECK(greeter.greet(LanguageCode::DE) == "Hallo Tests!");
|
||||
CHECK(greeter.greet(LanguageCode::ES) == "¡Hola Tests!");
|
||||
CHECK(greeter.greet(LanguageCode::FR) == "Bonjour Tests!");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user