I've recently starting using VS2013 (was previously using 2010).
I no longer seem to be able to run ignored tests by either using Resharper or the Visual Studio test runner. This is how I am declaring test methods:
[TestMethod, Ignore]
public void TestMethod()
{
// Do something
}
I used to be able to previously run tests like this manually? Has this functionality been removed?
NUnit's Explicit attribute still works fine.
Thanks