Experiments with session map template.
[metaproxy-moved-to-github.git] / src / test_session1.cpp
index 02e681a..cd1e23b 100644 (file)
@@ -1,3 +1,8 @@
+/* $Id: test_session1.cpp,v 1.8 2005-10-15 14:09:09 adam Exp $
+   Copyright (c) 2005, Index Data.
+
+%LICENSE%
+ */
 #include "config.hpp"
 #include "session.hpp"
 
@@ -19,11 +24,11 @@ BOOST_AUTO_TEST_CASE( testsession1 )
         yp2::Session session4;
         yp2::Session session5;
 
-        BOOST_CHECK_EQUAL (session5.id(), 5);
+        BOOST_CHECK_EQUAL (session5.id(), (unsigned long) 5);
 
         yp2::Session session = session3;
 
-        BOOST_CHECK_EQUAL (session.id(), 3);
+        BOOST_CHECK_EQUAL (session.id(), (unsigned long) 3);
     }
     catch (std::exception &e) {
         std::cout << e.what() << "\n";
@@ -38,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
  */