-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuReverseStringTests.pas
More file actions
78 lines (59 loc) · 1.32 KB
/
uReverseStringTests.pas
File metadata and controls
78 lines (59 loc) · 1.32 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
unit uReverseStringTests;
interface
uses
DUnitX.TestFramework;
const
CanonicalVersion = '1.2.0';
type
[TestFixture]
ReverseStringTest = class(TObject)
public
[Test]
// [Ignore('Comment the "[Ignore]" statement to run the test')]
procedure an_empty_string;
[Test]
// [Ignore]
procedure a_word;
[Test]
// [Ignore]
procedure a_capitalized_word;
[Test]
// [Ignore]
procedure a_sentence_with_punctuation;
[Test]
// [Ignore]
procedure a_palindrome;
[Test]
// [Ignore]
procedure an_even_sized_word;
end;
implementation
uses uReverseString;
{ ReverseStringTest }
procedure ReverseStringTest.an_empty_string;
begin
Assert.AreEqual('', reverse(''));
end;
procedure ReverseStringTest.an_even_sized_word;
begin
Assert.AreEqual('reward',reverse('drawer'));
end;
procedure ReverseStringTest.a_capitalized_word;
begin
Assert.AreEqual('nemaR',reverse('Ramen'));
end;
procedure ReverseStringTest.a_palindrome;
begin
Assert.AreEqual('racecar',reverse('racecar'));
end;
procedure ReverseStringTest.a_sentence_with_punctuation;
begin
Assert.AreEqual('!yrgnuh m''I', reverse('I''m hungry!'));
end;
procedure ReverseStringTest.a_word;
begin
Assert.AreEqual('tobor', reverse('robot'));
end;
initialization
TDUnitX.RegisterTestFixture(ReverseStringTest);
end.