X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Ftest_session1.cpp;h=5e21cdee1d6174a12fc4bf76a7f999cbd29230ea;hb=77dee8966dd1304a0fb8540c3fc68d02dc6ce84a;hp=f2ba77ec9ba2fa2696a72c339828bfd84ed59adc;hpb=073a9efb12b18f9bbd2bceaf778eb66124a0db65;p=metaproxy-moved-to-github.git diff --git a/src/test_session1.cpp b/src/test_session1.cpp index f2ba77e..5e21cde 100644 --- a/src/test_session1.cpp +++ b/src/test_session1.cpp @@ -1,3 +1,8 @@ +/* $Id: test_session1.cpp,v 1.9 2005-12-02 12:21:07 adam Exp $ + Copyright (c) 2005, Index Data. + +%LICENSE% + */ #include "config.hpp" #include "session.hpp" @@ -8,7 +13,7 @@ using namespace boost::unit_test; -BOOST_AUTO_TEST_CASE( testsession1 ) +BOOST_AUTO_UNIT_TEST( testsession1 ) { // test session @@ -18,11 +23,12 @@ BOOST_AUTO_TEST_CASE( testsession1 ) yp2::Session session3; yp2::Session session4; yp2::Session session5; - unsigned long int id; - id = session5.id(); - BOOST_CHECK (id == 5); - + BOOST_CHECK_EQUAL (session5.id(), (unsigned long) 5); + + yp2::Session session = session3; + + BOOST_CHECK_EQUAL (session.id(), (unsigned long) 3); } catch (std::exception &e) { std::cout << e.what() << "\n"; @@ -37,6 +43,7 @@ BOOST_AUTO_TEST_CASE( testsession1 ) * Local variables: * c-basic-offset: 4 * indent-tabs-mode: nil + * c-file-style: "stroustrup" * End: * vim: shiftwidth=4 tabstop=8 expandtab */