Search code examples
c#unit-testingvisual-studio-2015intellitest

Visual studio 2015 Intellitest not working on 64bit projects


I am trying to run intellitest on x64 project (for that matter i even tried to create simple 64x project)

public class Program
{
    public static void Main(string[] args)
    {
        if(args == null)
            throw new Exception("test");
    }
}

but for some reason all i get in intellitest output is

saving all files
building project
Launching exploration
starting...
preparing monitored process for 'C:\Users\User\Documents\Visual Studio 2012\Projects\Unitest\ConsoleApplication9\bin\Debug\ConsoleApplication9.exe'
failed to prepare process for assembly 'C:\Users\User\Documents\Visual Studio 2012\Projects\Unitest\ConsoleApplication9\bin\Debug\ConsoleApplication9.exe'
monitored process exited with error while loading assembly (-1006 - 0xfffffc12)
finished

Solution

  • Thank you for the feedback. This is by design. IntelliTest is not supported for x64 configuration at the moment.