Arc.Unit.Tests.Infrastructure.Data.NHibernate.SpecificationConverterTests.Should_throw_exception_when_method_is_not_translatable C# (CSharp) Method

Should_throw_exception_when_method_is_not_translatable() private method

        public void Should_throw_exception_when_method_is_not_translatable()
        {
            var specification = new Specification<DomainObject>(x => x.Name.Trim() == "");

            CriterionConverter.Convert(specification);
        }
SpecificationConverterTests