Say, I have the following test:
[Test]
public void MyTest( [RandomNumbers( Count=100, Minimum=0, Maximum=1000 )] int number )
{
...
}
And at some point, during my regular build process, it has failed. I got an e-mail notification and set off to investigate.
Now, when I open the test in Visual Studio and click ...
Hey guys,
Does anyone know how to have the test results of a Gallio test run (I'm using MbUnit, fwiw), show in the Output tab of Visual Studio? Right now it's opening a new window and showing the results there.
Thanks fellas,
-Steve
...
Hi,
I am trying to migrate my existing selenium tests with Nunit to MBunit so that I can run the tests in parallel using selenium grid. I've added the attributes
[assembly: DegreeOfParallelism(8)]
[assembly: Parallelizable(TestScope.All)]
to assemblyinfo.cs and added references to Gallio.dll and MBUnit.dll to the C# project. The pro...
Dear all,
I'm trying to run the tests I developed with MbUnit v2 under Gallio. All from inside a NAnt script that is started via TeamCity (actually the CodeBetter installation of TeamCity).
The tests run on my local machine inside the GUI Gallio Runner named Icarus, but not when the runner is in Local mode, only if I specify "IsolatedAp...