Here is my problem.
I have created a new class in my unit test project and added the TestFixture attribute to the class.
I have then added the TestMethod and built the project. The problem is that Test Explorer does not find the test so I cannot run it!
<TestFixture()> _
Public Class _SmokeTests
<TestMethod()>
Public Sub ServiceIsAccessible()
Pages.BaseNavigation.GoToLoginPage()
Assert.IsTrue(Pages.loginPage.IsAtPage())
End Sub
If I change 'TestFixture' to 'TestClass' then the test is found, but this is not what I want as I believe I need 'TestFixture' to run the 'TestFixtureTearDown' methods etc.
I am using VS2013.
Any help is appreciated!