blob: 8a808d8d72f21c4be34f1e048c2e915f9b95d0b5 (
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 <CharTools.h>
#include "Catch2.h"
TEST_CASE(__FILE__"/LowerToUpper_NoSymbols", "[Char][MakeUpper]")
{
// Setup
const std::string in = "newalbumcowboytearsoutfebruaryiamexcited";
const std::string expected = "NEWALBUMCOWBOYTEARSOUTFEBRUARYIAMEXCITED";
// Exercise
std::string out = in;
for (char& c : out)
c = CharTools::MakeUpper(c);
// Verify:
REQUIRE(out == expected);
}
TEST_CASE(__FILE__"/LowerToUpper_Symbols", "[Char][MakeUpper]")
{
// Setup
const std::string in = "new album 'Cowboy Tears' out february 18! i am excited!";
const std::string expected = "NEW ALBUM 'COWBOY TEARS' OUT FEBRUARY 18! I AM EXCITED!";
// Exercise
std::string out = in;
for (char& c : out)
c = CharTools::MakeUpper(c);
// Verify:
REQUIRE(out == expected);
}
TEST_CASE(__FILE__"/LowerToUpper_Mixed_And_Symbols", "[Char][MakeUpper]")
{
// Setup
const std::string in = "New album 'Cowboy Tears' out February 18! I am excited!";
const std::string expected = "NEW ALBUM 'COWBOY TEARS' OUT FEBRUARY 18! I AM EXCITED!";
// Exercise
std::string out = in;
for (char& c : out)
c = CharTools::MakeUpper(c);
// Verify:
REQUIRE(out == expected);
}
|