public void IsNonBlocking_InitializedStream_ReturnsTrue()
        {
            byte[] data = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
            ByteArrayInputStream stream = ByteArrayInputStream.Create(data);

            Assert.AreEqual(true, stream.IsNonBlocking());
        }