Forum member

bjjenson

3 posts

Posts by bjjenson

  1. Generic Test passes under NUnity but not NCrunch

    Yes it is set to use StaticAnalysis. Thanks

  2. Generic Test passes under NUnity but not NCrunch

    Here is the code for ExpressionBuilder. [code=csharp] public static class ExpressionBuilder { public static Expression<Func<TModel, bool>> CreateFilterExpression<TModel>(LambdaExpression parameterExpression, string value) { Type propertyType = GetPrope…

  3. Generic Test passes under NUnity but not NCrunch

    The following test passes fine under NUnit but does not pass under NCrunch. [TestCase((int)5, (int)6)] [TestCase((long)5, (long)6)] [TestCase((short)5, (short)6)] [TestCase((double)5.6, (double)6.5)] [TestCase((float)5.6, (float)6.5)] [TestCa…