summaryrefslogtreecommitdiffstats
path: root/StringTools/test/String__PadRight.cpp
diff options
context:
space:
mode:
authorLeonetienne <leon@etiennes.de>2022-05-16 23:57:26 +0200
committerLeonetienne <leon@etiennes.de>2022-05-16 23:57:26 +0200
commit954629f6bc3b7753c5be0c08e0cdb5caf1056d23 (patch)
tree33a95f60202135f9fcc689e081a64f2d274d7d99 /StringTools/test/String__PadRight.cpp
parent1fe3eeb14470470d8c95c40c98a12c15320bcd57 (diff)
Adhere to new project structure
Diffstat (limited to 'StringTools/test/String__PadRight.cpp')
-rw-r--r--StringTools/test/String__PadRight.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/StringTools/test/String__PadRight.cpp b/StringTools/test/String__PadRight.cpp
new file mode 100644
index 0000000..60e3ab1
--- /dev/null
+++ b/StringTools/test/String__PadRight.cpp
@@ -0,0 +1,44 @@
+#include <StringTools/StringTools.h>
+#include "Catch2.h"
+
+// Tests that padding to a length shorter adds no padding
+TEST_CASE(__FILE__"/PadToShorterLength", "[Strings][PadRight]")
+{
+ // Setup
+ const std::string in = "hello";
+
+ // Exercise
+ const std::string out = StringTools::PadRight(in, '0', 3);
+
+ // Verify
+ REQUIRE(out == "hello");
+ return;
+}
+
+// Tests that padding to a length equal adds no padding
+TEST_CASE(__FILE__"/PadToEqualLength", "[Strings][PadRight]")
+{
+ // Setup
+ const std::string in = "hello";
+
+ // Exercise
+ const std::string out = StringTools::PadRight(in, '0', 5);
+
+ // Verify
+ REQUIRE(out == "hello");
+ return;
+}
+
+// Tests that adding padding works
+TEST_CASE(__FILE__"/Padding", "[Strings][PadRight]")
+{
+ // Setup
+ const std::string in = "hello";
+
+ // Exercise
+ const std::string out = StringTools::PadRight(in, '0', 7);
+
+ // Verify
+ REQUIRE(out == "hello00");
+ return;
+}