// Copyright (c) 2005-2007 Andre Merzky (andre@merzky.net) // Copyright (c) 2005-2007 Hartmut Kaiser (hartmut.kaiser@gmail.com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test_saga.hpp" namespace test_task { void simple () { BOOST_CHECK (1); } class suite : public test_suite { public: suite () : test_suite ("task test suite") { add (BOOST_TEST_CASE (&simple)); } }; }