Ejemplo n.º 1
0
        public void TestBsonInteger()
        {
            InitStreams();
            BsonInteger w = new BsonInteger(5);
            w.Write(writer);

            FlushAndGotoBegin();

            BsonInteger r = new BsonInteger();
            r.Read(reader);

            Assert.AreEqual(w.Val, r.Val);
        }