| 1 | // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com) |
|---|---|
| 2 | // (C) Copyright 2007 Jonathan Turkanis |
| 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) |
| 5 | |
| 6 | // See http://www.boost.org/libs/iostreams for documentation. |
| 7 | |
| 8 | #include <boost/test/unit_test.hpp> |
| 9 | #include "read_input_seq_test.hpp" |
| 10 | #include "read_seekable_seq_test.hpp" |
| 11 | #include "write_output_seq_test.hpp" |
| 12 | #include "write_seekable_seq_test.hpp" |
| 13 | |
| 14 | using boost::unit_test::test_suite; |
| 15 | |
| 16 | test_suite* init_unit_test_suite(int, char* []) |
| 17 | { |
| 18 | test_suite* test = BOOST_TEST_SUITE("sequence test"); |
| 19 | test->add(BOOST_TEST_CASE(&read_input_sequence_test)); |
| 20 | test->add(BOOST_TEST_CASE(&read_seekable_sequence_test)); |
| 21 | test->add(BOOST_TEST_CASE(&write_output_sequence_test)); |
| 22 | test->add(BOOST_TEST_CASE(&write_seekable_sequence_test)); |
| 23 | return test; |
| 24 | } |
| 25 |
