OpenStory.Common.IO.UnsafePacketReadingFixture.Skip_Should_Throw_When_Count_Is_Negative C# (CSharp) Method

Skip_Should_Throw_When_Count_Is_Negative() private method

private Skip_Should_Throw_When_Count_Is_Negative ( ) : void
return void
        public void Skip_Should_Throw_When_Count_Is_Negative()
        {
            EmptyReader
                .Invoking(r => r.Skip(-1))
                .ShouldThrow<ArgumentOutOfRangeException>();
        }
UnsafePacketReadingFixture