Test case  "TestSerializable" uses the stream after closing.
------------------------------------------------------------

                 Key: LUCENENET-65
                 URL: https://issues.apache.org/jira/browse/LUCENENET-65
             Project: Lucene.Net
          Issue Type: Bug
            Reporter: Digy


       
        [Test]
        public virtual void  TestSerializable()
        {
            Directory dir = new RAMDirectory();
            System.IO.MemoryStream bos = new System.IO.MemoryStream(1024);
            Assert.AreEqual(0, bos.Length, "initially empty");
            System.IO.BinaryWriter out_Renamed = new 
System.IO.BinaryWriter(bos);
            long headerSize = bos.Length;
            System.Runtime.Serialization.Formatters.Binary.BinaryFormatter 
formatter = new 
System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
            formatter.Serialize(out_Renamed.BaseStream, dir);
            //out_Renamed.Close(); ----> BUGGY LINE
            Assert.IsTrue(headerSize < bos.Length, "contains more then just 
header");
            out_Renamed.Close();
        }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to