summaryrefslogtreecommitdiffstats
path: root/Test/String__PadLeft.cpp
diff options
context:
space:
mode:
authorLeonetienne <leonetienne@hotmail.de>2022-03-14 12:17:15 +0100
committerLeonetienne <leonetienne@hotmail.de>2022-03-14 12:17:15 +0100
commitcca5439be1d772e67b7f5d48db572df90b02d41e (patch)
tree8915373e547c6a952393bf35ea67602ae36eeea6 /Test/String__PadLeft.cpp
parent88f0fdc840555f00ee2cc4127e7671f309271e18 (diff)
Added padding functionality
Diffstat (limited to 'Test/String__PadLeft.cpp')
-rw-r--r--Test/String__PadLeft.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/Test/String__PadLeft.cpp b/Test/String__PadLeft.cpp
new file mode 100644
index 0000000..e424e42
--- /dev/null
+++ b/Test/String__PadLeft.cpp
@@ -0,0 +1,44 @@
+#include <StringTools.h>
+#include "Catch2.h"
+
+// Tests that padding to a length shorter adds no padding
+TEST_CASE(__FILE__"/PadToShorterLength", "[Strings][PadLeft]")
+{
+ // Setup
+ const std::string in = "hello";
+
+ // Exercise
+ const std::string out = StringTools::PadLeft(in, '0', 3);
+
+ // Verify
+ REQUIRE(out == "hello");
+ return;
+}
+
+// Tests that padding to a length equal adds no padding
+TEST_CASE(__FILE__"/PadToEqualLength", "[Strings][PadLeft]")
+{
+ // Setup
+ const std::string in = "hello";
+
+ // Exercise
+ const std::string out = StringTools::PadLeft(in, '0', 5);
+
+ // Verify
+ REQUIRE(out == "hello");
+ return;
+}
+
+// Tests that adding padding works
+TEST_CASE(__FILE__"/Padding", "[Strings][PadLeft]")
+{
+ // Setup
+ const std::string in = "hello";
+
+ // Exercise
+ const std::string out = StringTools::PadLeft(in, '0', 7);
+
+ // Verify
+ REQUIRE(out == "00hello");
+ return;
+}