CSharpUtilsTests.ConcatStreamTest.ReadExactChunksTest C# (CSharp) Method

ReadExactChunksTest() private method

private ReadExactChunksTest ( ) : void
return void
		public void ReadExactChunksTest()
		{
			Assert.AreEqual("010203", this.Stream.ReadBytes(3).ToHexString());
			Assert.AreEqual(false, this.Stream.Eof());
			Assert.AreEqual("0405060708", this.Stream.ReadBytes(5).ToHexString());
			Assert.AreEqual(true, this.Stream.Eof());
		}