summaryrefslogtreecommitdiffstats
path: root/Test/String__PadRight.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Test/String__PadRight.cpp')
-rw-r--r--Test/String__PadRight.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/Test/String__PadRight.cpp b/Test/String__PadRight.cpp
deleted file mode 100644
index 6846454..0000000
--- a/Test/String__PadRight.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-#include <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;
-}