xref: /haiku/src/tests/system/kernel/unit/TestVisitor.cpp (revision d374a27286b8a52974a97dba0d5966ea026a665d)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "TestVisitor.h"
8 
9 
10 TestVisitor::~TestVisitor()
11 {
12 }
13 
14 
15 bool
16 TestVisitor::VisitTest(Test* test)
17 {
18 	return false;
19 }
20 
21 
22 bool
23 TestVisitor::VisitTestSuitePre(TestSuite* suite)
24 {
25 	return false;
26 }
27 
28 
29 bool
30 TestVisitor::VisitTestSuitePost(TestSuite* suite)
31 {
32 	return false;
33 }
34