Arc.Unit.Tests.Infrastructure.Data.NHibernate.SpecificationConverterTests.Should_translate_property_is_greater_than_or_equal_to_constant_value_to_criteria C# (CSharp) 메소드

Should_translate_property_is_greater_than_or_equal_to_constant_value_to_criteria() 개인적인 메소드

        public void Should_translate_property_is_greater_than_or_equal_to_constant_value_to_criteria()
        {
            var specification = new Specification<DomainObject>(x => x.Id >= 1);

            var actual = CriterionConverter.Convert(specification);

            Assert.That(actual, Is.Not.Null);
            Assert.That(actual.ToString(), Is.EqualTo("Id >= 1"));
        }
SpecificationConverterTests