Bickle.Tests.Describing_a_spec.Can_describe_not_equals C# (CSharp) Method

Can_describe_not_equals() private method

private Can_describe_not_equals ( ) : void
return void
        public void Can_describe_not_equals()
        {
            int foo = 4;
            string description = SpecDescriber.DescribeSpec(() => foo != 5);
            description.ShouldBe("foo should not equal 5");
        }