Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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
like image 560
atikot Avatar asked Aug 23 '15 11:08

atikot


1 Answers

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

like image 188
pvlakshm Avatar answered Sep 19 '22 15:09

pvlakshm