repo.or.cz
/
qshowdiff.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Created testsuite for class Diff.
[qshowdiff.git]
/
tests
/
main.cpp
blob
c82266062bb2169f1923ce051209ca0bf6bf74ad
1
#include
"text.cpp"
2
#include
"snippet.cpp"
3
#include
"hunk.cpp"
4
#include
"diff.cpp"
5
6
TEST_SUITE
(
TestSuiteAll
);
7
REG
(
TestCaseText
);
8
REG
(
TestCaseSnippet
);
9
REG
(
TestCaseHunk
);
10
REG
(
TestCaseDiff
);
11
TEST_SUITE_END
;
12
13
int
main
(
int
argc
,
char
*
argv
[])
14
{
15
RUN
(
TestSuiteAll
);
16
}
17