Most voted "mstest" questions
2 questions
Sort by count of
-
20
votes1
answer200
viewsHow to make a test fail if it takes too long?
I’m using Mstest which is the default drive testing platform in visual studio and have this test here: [TestMethod] [ExpectedException(typeof(InvalidOperationException))] public void…
-
2
votes0
answers75
viewsHow to reuse the same browser in a test suite with Selenium and c#?
Every time a test suite is started the Openbrowser method of the Tbbrowser class is started and a new browser is opened, I wanted to reuse it, it is possible? ublic class Tbbrowser { public static…