Make public yp2_filter_struct non-const. If not, the linker symbol
[metaproxy-moved-to-github.git] / src / test_session1.cpp
index 14d6cf0..5e21cde 100644 (file)
@@ -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"
 
 
 using namespace boost::unit_test;
 
-BOOST_AUTO_TEST_CASE( testsession1 ) 
+BOOST_AUTO_UNIT_TEST( testsession1 ) 
 {
 
     // test session 
     try {
-        yp2::Session session;
-        unsigned long int id;
-        id = session.id();
-        id = session.id();
-        id = session.id();
-        id = session.id();
-        id = session.id();
-        id = session.id();
-        id = session.id();
-        id = session.id();
-        id = session.id();
-        id = session.id();
-
-        BOOST_CHECK (id == 10);
-        
+        yp2::Session session1;
+        yp2::Session session2;
+        yp2::Session session3;
+        yp2::Session session4;
+        yp2::Session session5;
+
+        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";
@@ -42,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
  */