diff options
| author | Leonetienne <leon@etiennes.de> | 2022-05-16 23:57:26 +0200 |
|---|---|---|
| committer | Leonetienne <leon@etiennes.de> | 2022-05-16 23:57:26 +0200 |
| commit | 954629f6bc3b7753c5be0c08e0cdb5caf1056d23 (patch) | |
| tree | 33a95f60202135f9fcc689e081a64f2d274d7d99 /StringTools/test/String__Lower.cpp | |
| parent | 1fe3eeb14470470d8c95c40c98a12c15320bcd57 (diff) | |
Adhere to new project structure
Diffstat (limited to 'StringTools/test/String__Lower.cpp')
| -rw-r--r-- | StringTools/test/String__Lower.cpp | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/StringTools/test/String__Lower.cpp b/StringTools/test/String__Lower.cpp new file mode 100644 index 0000000..a9e819b --- /dev/null +++ b/StringTools/test/String__Lower.cpp @@ -0,0 +1,72 @@ +#include <StringTools/StringTools.h> +#include "Catch2.h" + +// Tests that lowering an empty string returns an empty string +TEST_CASE(__FILE__"/EmptyString", "[Strings][Lower]") +{ + // Setup + const std::string in = ""; + + // Exercise + const std::string out = StringTools::Lower(in); + + // Verify + REQUIRE(out == ""); + return; +} + +// Tests that lowering a string without any letters returns itself +TEST_CASE(__FILE__"/Symbols", "[Strings][Lower]") +{ + // Setup + const std::string in = "66! _-\n*"; + + // Exercise + const std::string out = StringTools::Lower(in); + + // Verify + REQUIRE(out == "66! _-\n*"); + return; +} + +// Tests that lowering a string of lowercase letters returns itself +TEST_CASE(__FILE__"/AlreadyLowered", "[Strings][Lower]") +{ + // Setup + const std::string in = "ughareyouserious"; + + // Exercise + const std::string out = StringTools::Lower(in); + + // Verify + REQUIRE(out == "ughareyouserious"); + return; +} + +// Tests that lowering a string of uppercase letters returns the lowercase version +TEST_CASE(__FILE__"/Uppercase", "[Strings][Lower]") +{ + // Setup + const std::string in = "UGHAREYOUSERIOUS"; + + // Exercise + const std::string out = StringTools::Lower(in); + + // Verify + REQUIRE(out == "ughareyouserious"); + return; +} + +// Tests that lowering a string of uppercase, lowercase letters and symbols returns the lowercase version +TEST_CASE(__FILE__"/Mixed", "[Strings][Lower]") +{ + // Setup + const std::string in = "Ugh, Are You Serious?! DON'T DO THAT!!!"; + + // Exercise + const std::string out = StringTools::Lower(in); + + // Verify + REQUIRE(out == "ugh, are you serious?! don't do that!!!"); + return; +} |
