blob: f56784cd08a92662b0769b9d47c9235f18af583c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#include <StringTools/StringTools.h>
#include "Catch2.h"
using namespace Leonetienne::StringTools;
// 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;
}
|