+#if 0
+ // EOF behaviour is different in streams, disabled (for now?)
+
+ if (m_bEofAtLastRead)
+ // EOF should only occure after the last successful get.
+ CPPUNIT_ASSERT_MESSAGE("Eof is detected too late.", !(stream_in.LastRead() != 1 && stream_in.Eof()));
+ else
+ // EOF should only occure after a failed get.
+ CPPUNIT_ASSERT_MESSAGE("Eof is detected too soon.", !(stream_in.LastRead() == 1 && stream_in.Eof()));
+#endif