Forum member
bjjenson
3 posts
Posts by bjjenson
-
Generic Test passes under NUnity but not NCrunch
Yes it is set to use StaticAnalysis. Thanks
04 Sep 2013 19:25 UTC
-
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…
03 Sep 2013 15:39 UTC
-
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…
30 Aug 2013 16:05 UTC