Bickle.Tests.Describing_a_spec.Can_describe_not_equals C# (CSharp) Méthode

Can_describe_not_equals() private méthode

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