repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
btrfs: Attempt to fix GCC2 build.
[haiku.git]
/
src
/
tests
/
ExampleTestAddon.cpp
blob
88ed2022e9594045885db02f3f4ca6f7fb0737c0
1
#include <TestSuite.h>
2
#include <TestSuiteAddon.h>
3
4
#include
"ExampleTest.h"
5
6
BTestSuite
*
getTestSuite
() {
7
BTestSuite
*
suite
=
new
BTestSuite
(
"ExampleSuite"
);
8
suite
->
addTest
(
"ExampleTests"
,
ExampleTest
::
Suite
());
9
return
suite
;
10
}