I have installed OpenCover through nuget.
This is the line I'm running from my Command Prompt
C:\myapp\Main\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -target:"C:\Program Files (x86)\NUnit 2.6.4\bin\nunit-console.exe" -register:user -targetargs:"C:\myapp\Main\myapp.SeleniumTests\bin\Debug\myapp.seleniumTests.dll /result=c:\TestRunner\SeleniumResults.xml /include:Single"
I can see that the test runs because FireFox opens up and it goes through all the necesary steps. but once its done I get "Visisted Classes 0 of 309"
I have tried adding
-searchdirs:"C:\myApp\Main\MainWebProject\bin"
but still it comes back with no coverage.
What am I missing?