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
3
votes
1 answer

xUnit + Gallio + code coverage in Visual Studio 2010

I'm trying to find a way to migrate from mstest to xunit and still benefit from the IDE integration which made me choose mstest in the first place. Gallio seems to accomplish this noble goal, plus it's free (don't want Reshaper or TestDriven.net).…
3
votes
2 answers

Hover over an element using WatiN

I work on a suite of automated tests that have been developed using WatiN and MBUnit. I've heard that it's possible to get WatiN to 'hover' over an element, but I can't seem to get it working using the methods I've used in the past. Is there another…
Jen Bandelin
  • 193
  • 2
  • 12
3
votes
1 answer

How to re-run the same test with same data in MbUnit

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…
Fyodor Soikin
  • 78,590
  • 9
  • 125
  • 172
3
votes
4 answers

Using ReSharper Test Runner to run MSTest Unit Tests

I need to use the ReSharper Unit Test Runner to run my MSTest Unit Tests on VS 2008. I have heard of using "Gallio" to do this but I don't know what Gallio is (it seemed like some all purpose VS extensibility framework). Does anyone know the best…
skb
  • 30,624
  • 33
  • 94
  • 146
3
votes
2 answers

Using app.config in MBunit test

The way I have my unit test set up is that a user can run the executable and select a dataset to use. This information is stored in app.config, however when I try to access app.config when running the unit test with Gallio Icarus it doesn't…
Reflux
  • 2,929
  • 4
  • 26
  • 27
3
votes
3 answers

Documentation for mbunit v3

Any pointers for the documentation on the new features of mbunit v3?
Tulika
  • 360
  • 5
  • 16
3
votes
1 answer

MbUnit and Resharper integration not working in Visual Studio 2010

I set up a new machine this week. It is running Windows 7, 64 bit. I installed Visual Studio 2010 Professional, then Resharper 5.0, rapidly followed by Resharper 5.1 when it came out soon after. Since I have a project with tests in MbUnit, I have…
Anthony
  • 5,176
  • 6
  • 65
  • 87
3
votes
1 answer

Using MbUnit with Delphi Prism

I have created below simple testcase in Delphi Prism. When I run the testcase using Gallio Icarus, it returns a This test is not supported by any available test framework. I can think of only two reasons why this might be happening I am missing…
Lieven Keersmaekers
  • 57,207
  • 13
  • 112
  • 146
3
votes
2 answers

parallel test with C# and selenium grid

I have a test that I'm trying to run parallel in multiple browsers(IE, Chrome and Firefox). [SetUp] public void TestInitialize() { //EnvironmentAccess.LoadEnvironment(); // Create a new instance of the…
user3703723
  • 229
  • 1
  • 2
  • 11
3
votes
3 answers

Why does Gallio seem to need to be in a folder named GallioBundle-3.1.397.0/bin to run

I want to run MbUnit tests with Icarus and/or Echo without having to install Gallio. I have copied all of the files in the GallioBundle/bin into a folder named Third Party/MbUnit in our project folder. When I double click on Gallio.Icarus.exe it…
PilotBob
  • 3,107
  • 7
  • 35
  • 52
3
votes
4 answers

Comparing two objects that are the same in MbUnit

From MBUnit I am trying to check if the values of two objects are the same using Assert.AreSame(RawDataRow, result); However I am getting the following fail: Expected Value & Actual Value : {RawDataRow: CentreID = "CentreID1", CentreLearnerRef =…
Coppermill
  • 6,676
  • 14
  • 67
  • 92
3
votes
1 answer

Cannot integrate Gallio MBUnit with Team City

I have been trying to get my MBUnit tests suite to work on Team City for many days now without any success. My solution builds no problem. The program is with my tests. After googling for Gallio integration with Team City I tried many ways to make…
Bernard Larouche
  • 1,211
  • 2
  • 13
  • 22
3
votes
2 answers

Gallio error : MSTest executable was not found

I've got an annoying issue with Gallio when I try to analyse my VS2012 C# solution with my sonar-runner. When Gallio try to launch my unit test I can find this issue in the logs : [error] Assembly XXXX Cannot run tests because MSTest…
Paul
  • 35
  • 6
3
votes
1 answer

Gallio and MbUnit in NAnt

I am trying to use Gallio (v3.1)/MbUnit/NCover to run a unit test in my C# code, as part of the build process for my continuous integration system. I can get Gallio.Echo.exe to execute the tests and output an XML file (albeit it does seem to be…
Brett Rigby
  • 6,101
  • 10
  • 46
  • 76
3
votes
1 answer

Using MBUnit to test values against a database

I need to test a class who's return value depends on values from a database. I could just hit the database in the unit test but those values could change. Is there a standard solution to this?
Nick Dat Le
  • 369
  • 4
  • 12
1 2
3
13 14