|
Revision 823, 0.6 kB
(checked in by xkovah, 1 year ago)
|
adding the files finally
|
| Line | |
|---|
| 1 |
#include <boost/test/unit_test.hpp> |
|---|
| 2 |
#include <boost/test/unit_test_suite.hpp> |
|---|
| 3 |
#include <boost/test/execution_monitor.hpp> |
|---|
| 4 |
using boost::unit_test_framework::test_suite; |
|---|
| 5 |
using boost::execution_monitor; |
|---|
| 6 |
|
|---|
| 7 |
#include "OptionsManager_UnitTests.h" |
|---|
| 8 |
#include "ProcessManager_UnitTests.h" |
|---|
| 9 |
#include "Logger_UnitTests.h" |
|---|
| 10 |
|
|---|
| 11 |
test_suite* __cdecl init_unit_test_suite(int argc, char* argv[]) |
|---|
| 12 |
{ |
|---|
| 13 |
test_suite* top_test_suite = BOOST_TEST_SUITE( "Capture Client Test Suite" ); |
|---|
| 14 |
|
|---|
| 15 |
top_test_suite->add(new OptionsManager_TestSuite()); |
|---|
| 16 |
top_test_suite->add(new ProcessManager_TestSuite()); |
|---|
| 17 |
top_test_suite->add(new Logger_TestSuite()); |
|---|
| 18 |
|
|---|
| 19 |
return top_test_suite; |
|---|
| 20 |
} |
|---|