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
5
votes
2 answers

Unable to output log messages in MbUnit + TestDriven

I am unable to to output log messages to console via the Common.Logging framework in MbUnit tests run by TestDriven. I am not sure if it has to do with the way Gallio is registered with TestDriven. I followed the steps on this post ( Register a…
Candy Chiu
  • 6,579
  • 9
  • 48
  • 69
5
votes
3 answers

Gallio: Cannot run tests because the MSTest executable was not found

I installed the newest Gallio release 3.2.603 on a box without Visual Studio that will be our CI server. The NAnt script successfully built the .Net 4.0 projects but when it tries to run MSTest tests the following error occurs. [gallio] Gallio NAnt…
Ivan Gerken
  • 914
  • 1
  • 9
  • 21
5
votes
3 answers

Debug using MbUnit/Gallio 3.1

When I use the [Debug] button in Gallio, the breakpoints in my unit tests are not hitting. The unit tests are written with MbUnit/Gallio. I am using MbUnit/Gallio version 3.1 build 397 with Visual Studio 2010 Beta 2. The unit tests run to…
RL.
  • 51
  • 1
  • 3
5
votes
1 answer

TeamCity MSBuild Gallio NCover Reporting

I'm a complete build system newbie through and through. I've been playing with this for about two weeks on and off now and I just can't crack it, I think I've reached a point where I need a fresh pair of eyes. Ultimately I'm aiming for having a…
Jammer
  • 9,969
  • 11
  • 68
  • 115
5
votes
1 answer

How do I configure VS2012 test runner to pick up and run Gallio unit tests?

I've recently upgraded to VS2012 to iron out problems ahead of my team. We use Gallio 3.3 as a unit tests framework and have numerous tests written which work in VS2010. However, VS2012 does not appear to recognise them. The VS2012 Test Explorer…
Peter
  • 5,455
  • 7
  • 46
  • 68
4
votes
5 answers

Using Resharper Unit Test Runner for MSTest via Gallio

I am attempting to get the Resharper test runner to recognize my MSTest unit tests via Gallio. I have the following installed: VSTS 2005 8.0.50727.762 Resharper 4.1 Gallio 3.0.0.285 I am also running Windows XP x64. The unit test options only shows…
NotMyself
  • 29,209
  • 17
  • 56
  • 74
4
votes
1 answer

sonar / maven context: Gallio execution failed. Searching why:?

I've got a server 2008 continuous integration box, on which I want to use Gallio so as to execute my MSTests and PartCover for my Sonar dashboard. I installed Gallio 3.3.1 x64 along with PartCover, and so on. Gallio works via Icarus on my test…
Vinzz
  • 3,968
  • 6
  • 36
  • 51
4
votes
1 answer

MbUnit: The most elegant way to compare doubles?

The code Assert.AreEqual (9.97320998018748d, observerPosition.CenterLongitude); produces Expected Value & Actual Value : 9.97320998018748 Remark : Both values look the same when formatted but they are distinct instances. What is the most elegant…
Igor Brejc
  • 18,714
  • 13
  • 76
  • 95
4
votes
2 answers

Does MBUnit support Resharper 6?

Resharper 6 has just been released. I'd love to update, but MBUnit support was still broken the last time I tried an EAP. Is MBUnit working with Resharper 6 now? Thanks, Adrian
Adrian Grigore
  • 33,034
  • 36
  • 130
  • 210
4
votes
2 answers

Is there an MBUnit attribute to run Row tests in the order they were defined

I've tried googling around for this but have found nothing. Basically, I'd like to run each row in the order I defined it. For example, if I have this: [Row("a")] [Row("b")] [Row("c")] [Test] public void Test(string s)... I want to be sure that…
LJM
  • 6,284
  • 7
  • 28
  • 30
4
votes
1 answer

How to isolate a bad COM component (HP Quality Center 10.0) from a .Net application when performing integration tests

I'm currently working on some .Net based software (.Net Framework 3.5 SP1) that integrates with HP Quality Center 10.0 through it's COM Client API (often referred to as TDApiOle80 or TDApiOle80.TDConnection). We are using XUnit 1.6.1.1521 and Gallio…
Bittercoder
  • 11,753
  • 10
  • 58
  • 76
4
votes
3 answers

Run NUnit 2.5.5 tests in Gallio 3.1

I'm trying to get Gallio running some existing NUnit tests but they're not showing in Gallio. The assembly loads into Gallio fine and I can run them fine via Resharper within the VS IDE. I created a really simple NUnit test in VS and this also…
Darren Lewis
  • 8,338
  • 3
  • 35
  • 55
4
votes
4 answers

Is there a test runner for .NET tests that can run multi-threaded to take advantage of multi-core machines?

I'm setting up CI at present using Thoughtworks Studios' Cruise, Gallio to run xunit.net fact/tests, and ncover 2 to do code-coverage. I noticed that running the code-coverage pegs one of the four CPUs that our build-agent server has, and wondered…
Peter Mounce
  • 4,105
  • 3
  • 34
  • 65
4
votes
1 answer

Why do we see a ModuleLoadExceptionHandlerException when unit testing

We have a mixed mode assembly that contains both VC++ (using MFC) and C++/CLI classes. It is an MFC Extension dll and is loaded into our MFC executable at runtime and all works well. When we come to unit test the unmanaged classes in there from…
Colin Desmond
  • 4,824
  • 4
  • 46
  • 67
4
votes
1 answer

How do I run MSpec in Visual Studio's test system using Gallio?

I'm trying to run MSpec tests in Visual Studio's test system using Gallio, but it appears to be ignoring the MSpec plugin from the IDE. What I did: Installed Gallio Added the MSpec NuGet package to my test project Added the Gallio NuGet package to…
Richard Szalay
  • 83,269
  • 19
  • 178
  • 237
1
2
3
13 14