// 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 using boost::unit_test_framework::test_suite; #include "test_saga.hpp" namespace test_session { void simple () { saga::session * s = new saga::session (); BOOST_CHECK (s); delete (s); } class suite : public test_suite { public: suite () : test_suite ("session test suite") { add (BOOST_TEST_CASE (&simple)); } }; }