From 954629f6bc3b7753c5be0c08e0cdb5caf1056d23 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Mon, 16 May 2022 23:57:26 +0200 Subject: Adhere to new project structure --- StringTools/test/String__PadLeft.cpp | 44 ++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 StringTools/test/String__PadLeft.cpp (limited to 'StringTools/test/String__PadLeft.cpp') diff --git a/StringTools/test/String__PadLeft.cpp b/StringTools/test/String__PadLeft.cpp new file mode 100644 index 0000000..6297dce --- /dev/null +++ b/StringTools/test/String__PadLeft.cpp @@ -0,0 +1,44 @@ +#include +#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; +} -- cgit v1.2.3