Questions tagged [gallio]

Gallio is an Automation Platform for .NET

From their website:

The Gallio Automation Platform is an open, extensible, and neutral system for .NET that provides a common object model, runtime services and tools (such as test runners) that may be leveraged by any number of test frameworks.

The Gallio platform seeks to facilitate the creation of a rich ecosystem of interoperable testing tools produced by and for the community at large so as to address a far wider range of testing needs than any previous independent testing framework has done before. Unit tests, integration tests, performance tests, and even semi-automated test harnesses should all be able to leverage common facilities where appropriate. Moreover, they should present consistent interfaces to the world so that they can easily be integrated into the systems and processes of the enterprise.

196 questions
0
votes
1 answer

Incorrect TestOutcome status in Teardown when created from StaticTestFactory

Using MbUnit, I create tests using several StaticTestFactory methods, each having corresponding test setup and teardown methods. A requirement is to log test results to an external system, especially failed ones. However, I am unable to get the…
Faiz
  • 3,216
  • 1
  • 19
  • 25
0
votes
1 answer

Run OpenCover, Gallio, MbUnit under Bamboo?

I have a C# project that I have used OpenCover and Gallio to run the MbUnit UnitTests from Nant script. I'm trying to set this up in Bamboo. I see Bamboo has NUnit runner, but doesn't seem to have anything for MbUnit. Any idea how one would run…
Orn Kristjansson
  • 3,435
  • 4
  • 26
  • 40
0
votes
1 answer

Ncover returns error #20000

I am executing Ncover.Console.exe with gallio.echo in the following manner Ncover.Console.exe //pm Gallio.Host.exe But Ncover returns error #20000 " no data collected". gallio version 3.4 Ncover complete trial version : 3.4 Please suggest.
priya
  • 852
  • 18
  • 39
0
votes
1 answer

How to show mbunit/gallio TestLog or Console output in Jenkins?

I'm using Gallio/MbUnit framework for my web testing, and the tests are kicked off from Jenkins. I've installed the Gallio/MbUnit plugin and it's publishing the xml report. I'm trying to find a way to display test log or console messages in the…
Sean
  • 282
  • 3
  • 11
0
votes
1 answer

Gallio Icarus: Sort tests in Test Explorer according to Test.Order or DependsOn attributes

Gallio + MBUNIT are used. I have rather big test fixtures, which consist from 30-40 test. Test run in the the order defined using [Test(Order=)] attribute, also [DependsOn()] is used to don't run next test if previous failed. If open the DLL in the…
trickbz
  • 945
  • 1
  • 9
  • 25
0
votes
1 answer

Using Gallio to run vstest from VS2012

I am surprised that I have not been able to find this information online. We use Sonar to run Gallio to collect test coverage information. When Gallio runs it reports the following error. Cannot run tests because the MSTest executable was not…
denver
  • 2,863
  • 2
  • 31
  • 45
0
votes
0 answers

Gallio executing Error on Sonar

I have C# project. when I analyzed the project the gallio plugin is not executing. It says that, Gallio won't execute as there are no test projects. But i have test project. In my pom.xml file test pattern…
ѕтƒ
  • 3,547
  • 10
  • 47
  • 78
0
votes
0 answers

Getting DependsOn Attribute to work with StaticTestFactory

When generating Tests with a StaticTestFactory in mbunit, the test suite needs to run only if a previous test passes. In the below code sample, The test Factory_ShouldNotRun_Test is executed even when the test it depends on fails. The DependsOn…
Faiz
  • 3,216
  • 1
  • 19
  • 25
0
votes
1 answer

running nunit tests (x86) with gallio

I am trying to run nunit tests with gallio. These tests run with nunit-console-x86.exe When I run them with nunit-console.exe, I am getting System.BadImageFormatException Running with Gallio.Echo.exe (installed the x86 bundle from gallio.org), I am…
0
votes
1 answer

MbUnit Gallio WatiN Right-Click Testing on a link

I want to test right click on a link by using MbUnit, Gallio and WatiN. Currently I can not see what is the way to do that. It seems that there is no method for right click which I can call from the framework. I am sure that there is a workaround,…
Velchev
  • 49
  • 5
0
votes
1 answer

Tests failing with gallio but passing with nunit-console.exe

I am using sonar analysis for a project. I am unable to get code coverage because tests are giving errors when I run with Gallio. If I run the same unit tests with nunit-console.exe all of them are passing. (I am running this in administrator mode…
0
votes
1 answer

Sonar is running Gallio with OpenCover but Sonar is still reporting code coverage: 0%

I am trying to run code coverage with open cover through sonar. I am using the following: Sonar 3.5 C# Plugins Ecosystem 2.0 OpenCover 4.5.1313 Gallio v3.4.14.0 sonar-runner 2.1 When I run sonar-runner the tests run and OpenCover Runs, the…
Bob Nowadly
  • 163
  • 1
  • 4
0
votes
1 answer

Sonar running tests from a different solution (.NET)

So here is my scenario, I have .NET project, lets call it FooBar, which is a web application, and in a entirely separate solution I have a .NET project lets call it FooBarSeleniumUITests to test the web application using Selenium Webdriver, it is…
0
votes
1 answer

Debug Unit Tests using Resharper 7 for MBUnit throws an exception

I have installed the Gallio Resharper Test Runner found at http://code.google.com/p/mb-unit/issues/detail?id=900#c9 Per the instructions at How to support MBUnit tests in Resharper 7. When I right click inside of a unit test and click "Run Unit…
Barka
  • 8,764
  • 15
  • 64
  • 91
0
votes
1 answer

Display Gallio reports on CruiseControl.Net

I am setting up a CruiseControl.Net build server. My project compiles, and runs unit tests. In my ccnet.config I have this: C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe
thomasb
  • 5,816
  • 10
  • 57
  • 92