Echo Writes Code

test.hpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef CRUCIBLE_TEST_HPP
#define CRUCIBLE_TEST_HPP

#include "crucible/test/abstract_reporter.hpp"
#include "crucible/test/console_reporter.hpp"
#include "crucible/test/copy_move_tracer.hpp"
#include "crucible/test/expect.hpp"
#include "crucible/test/fixture.hpp"
#include "crucible/test/outcome.hpp"
#include "crucible/test/reporter.hpp"
#include "crucible/test/scenario.hpp"
#include "crucible/test/shell.hpp"
#include "crucible/test/suite.hpp"

#endif // CRUCIBLE_TEST_HPP