Forum member

Boris Letocha

3 posts

Posts by Boris Letocha

  1. Liveness extended with enabled timing

    It is Multi-core, both hyperthreaded (Work PC) and without hyperthread (Home PC). CPU architecture in NCrunch settings must be AutoDetect or x86. On x64 it works. Class Library itself is just Any CPU. I also submitted bug report if it helps you.

  2. Liveness extended with enabled timing

    Yes it is consistent. just create c# class library project in VS add NUnit through Nuget, paste this code, enable NCrunch. I have installed .Net 4.5 CTP, but this runs in VS2010 with selected .Net 4.0 Yes switching off 'Analyse line execution times' is workaround for this problem.

  3. Liveness extended with enabled timing

    This test should pass, but it is not in 1.37b with default settings. using System; using NUnit.Framework; namespace ClassLibrary1 { [TestFixture] public class Class1 { [Test] public void Test() { var weak = new WeakReference(new object()…