From a6c9e64eb559a58d31f5ea68b8947f460ed8f04b Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Sat, 12 Feb 2022 03:07:11 +0100 Subject: Better directory structure naming --- StringTools/Test/Upper.cpp | 72 ---------------------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 StringTools/Test/Upper.cpp (limited to 'StringTools/Test/Upper.cpp') diff --git a/StringTools/Test/Upper.cpp b/StringTools/Test/Upper.cpp deleted file mode 100644 index ec2087e..0000000 --- a/StringTools/Test/Upper.cpp +++ /dev/null @@ -1,72 +0,0 @@ -#include -#include "Catch2.h" - -// Tests that uppering an empty string returns an empty string -TEST_CASE(__FILE__"/EmptyString", "[Upper]") -{ - // Setup - const std::string in = ""; - - // Exercise - const std::string out = StringTools::Upper(in); - - // Verify - REQUIRE(out == ""); - return; -} - -// Tests that uppering a string without any letters returns itself -TEST_CASE(__FILE__"/Symbols", "[Upper]") -{ - // Setup - const std::string in = "66! _-\n*"; - - // Exercise - const std::string out = StringTools::Upper(in); - - // Verify - REQUIRE(out == "66! _-\n*"); - return; -} - -// Tests that uppering a string of uppercase letters returns itself -TEST_CASE(__FILE__"/AlreadyUppered", "[Upper]") -{ - // Setup - const std::string in = "UGHAREYOUSERIOUS"; - - // Exercise - const std::string out = StringTools::Upper(in); - - // Verify - REQUIRE(out == "UGHAREYOUSERIOUS"); - return; -} - -// Tests that uppering a string of lowercase letters returns the uppercase version -TEST_CASE(__FILE__"/Lowercase", "[Upper]") -{ - // Setup - const std::string in = "ughareyouserious"; - - // Exercise - const std::string out = StringTools::Upper(in); - - // Verify - REQUIRE(out == "UGHAREYOUSERIOUS"); - return; -} - -// Tests that uppering a string of uppercase, lowercase letters and symbols returns the uppercase version -TEST_CASE(__FILE__"/Mixed", "[Upper]") -{ - // Setup - const std::string in = "Ugh, Are You Serious?! DON'T do that!!!"; - - // Exercise - const std::string out = StringTools::Upper(in); - - // Verify - REQUIRE(out == "UGH, ARE YOU SERIOUS?! DON'T DO THAT!!!"); - return; -} -- cgit v1.2.3