Tagged Questions

MbUnit is a Generative Unit Test Framework for the .NET Framework.

learn more… | top users | synonyms

123
votes
8answers
24k views

NUnit vs. MbUnit vs. MSTest vs. xUnit.net

There are quite a lot of unittesting frameworks out there for .NET. I found this little feature comparison: http://xunit.codeplex.com/wikipage?title=Comparisons Now I am to choose the best one for ...
18
votes
7answers
8k views

MSBuild — Use the .csproj file or roll your own?

OK, so I readily concede that I'm a newbie when it comes to continuous integration. That being said, I'm trying to set up a CC.NET environment to educate myself, but I'm having trouble finding the ...
12
votes
10answers
2k views

Best test runner? (Unit Testing, .NET)

I'm using MBUnit Framework for unit testing and looking for a good test runner. MbUnit's runner is fast however lacking lots of stuff such as You can't set execution path It's collapsing all trees ...
10
votes
7answers
1k views

Users of Gallio, what Advantages and Disadvantages have you experienced using this Tool?

For those of you familiar with Gallio, what Advantages and Disadvantages have you experienced using this tool, a so-called Test Automation Platform?
9
votes
4answers
3k views

TestDriven.net with Gallio, MbUnit and NCover problems

Why doesnt TestDriven.Net work with my gallio/mbunit tests? I've used TDD.Net with MbUnit v2 and not had any problems, but with the new gallio release on my new pc, it does nothing. From the tdd ...
7
votes
1answer
824 views

How exactly do MbUnit's [Parallelizable] and DegreeOfParallelism work?

I thought I understood how MbUnit's parallel test execution worked, but the behaviour I'm seeing differs sufficiently much from my expectation that I suspect I'm missing something! I have a set of UI ...
7
votes
2answers
2k views

How to debug mbunit/Gallio unit tests in visual studio

I am trying to figure out how I can hit breakpoints in my unit tests that are written with MbUnit/Gallio. I tried running Gallio.Icarus, attaching vs debugger to it, the breakpoints weren't hit. Next ...
6
votes
1answer
154 views

MbUnit Icarus self-destructs on this test

I'm trying to test a multi-threaded IO class using MbUnit. My goal is to have the test fixture constructor execute 3 times, once for each row on the class. Then, for each instance, execute the tests ...
6
votes
2answers
260 views

MbUnit's row attribute in NUnit?

While reading an Asp.Net MVC code sample that used MbUnit as it's testing framework, I saw that it was possible to run a single test against multiple input possibilities by using a Row attribute, like ...
6
votes
3answers
1k views

MbUnit vs Nunit

I read that MbUnit is Nunit on steroids, but I don't see why. From what I have read on here, I here that Nunit is more popular over MbUnit. One of the main reasons is because it has a fluent ...
6
votes
2answers
571 views

Can a Gallio/MbUnit Test be Ran without Installing Gallio?

I've installed TestDriven.Net in Visual Studio 2008 and when I run a mbunit test from TD.Net I get this message: It looks like you're trying to execute a Gallio/MbUnit unit test. For Gallio ...
6
votes
4answers
2k views

do you know any tutorial for MBUnit?

It looks a bit hard to find documentation about MBUnit, do you know any tutorial? Thank you!
6
votes
5answers
1k views

MSTest and NHibernate

Does anyone have any experience getting MSTest to copy hibernate.cfg.xml properly to the output directory? All my MSTests fail with a cannot find hibernate.cfg.xml error (I have it set to Copy ...
6
votes
3answers
893 views

TestDriven.NET is not running my SetUp methods for MbUnit

I've created some MbUnit Test Fixtures that have SetUp methods marked with the SetUp attribute. These methods run before the tests just fine using the MbUnit GUI, the console runner, and the ...
5
votes
2answers
409 views

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
5
votes
1answer
719 views

Using Gallio/Mbunit with TFS 2010 Team Build

How do you configure a Team Build 2010 build process template to run MbUnit tests via Gallio?
5
votes
7answers
506 views

When unit testing, do you have to use a database to test CRUD operations?

When unit testing, is it a must to use a database when testing CRUD operations? Can sql lite help with this? Do you have to cre-create the db somehow in memory? I am using mbunit.
5
votes
2answers
126 views

Are there any plans for Microsoft to support testing frameworks other than MSTest?

It seems like you should be able to configure your preferred unit testing framework as a plugin to Visual Studio/Team system like you can with SourceControl providers. Is anyone aware of an effort ...
5
votes
2answers
689 views

Equivalent of assert.warning in mstest?

is there a MsTest Equivalent of Assert.Warning in MbUnit ?
5
votes
1answer
465 views

What dlls from Gallio do I need to include for TeamCity to run the tests

I'm using Gallio and MbUnit 3, and I have Team City 4 installed. I just put the whole bin directory of Gallio into Subversion since I didn't know what dlls I needed. Do you know which ones I need to ...
5
votes
4answers
2k views

Using MBUnit in TeamCity

I'm compiling a NAnt project on linux with TeamCity Continuous Integration server. I have been able to generate a test report by running NAnt on mono thru a Command Line Runner but don't have the ...
4
votes
4answers
381 views

is NUnit bad choice for Selenium test?

I have read umpteen answers on SO while searching for NUnit + dependent methods + order of test execution. Every single answer suggests that forcing any set of order for unit tests is extremely evil. ...
4
votes
2answers
3k views

Gallio test runner plugin to Visual Studio 2008 and 2010 for MBUnit tests

If I install Gallio 3.x will it also install a test runner plugin for Visual Studio? Or must I use an additional plug-in like TestDriven.NET or Visual Nunit to run MbUnit test classes from within VS? ...
4
votes
3answers
984 views

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 ...
4
votes
3answers
351 views

Choosing a test platform for .NET - MbUnit or the one by Microsoft?

I have chosen these two as primary candidates. My thinking goes like this: MbUnit has had a nice start and enjoys a smart, dedicated team of developers. MSFT has many resources and can compete with ...
4
votes
3answers
810 views

Can VS2008 Testrunner run MbUnit tests or not?

Ok, so I keep seeing how VS2008 has this nice unit test display and I can see people running NUnit tests within it on Dimecasts.net and this article seems to imply that MbUnit v3 should have support ...
4
votes
1answer
308 views

Questions when moving from MbUnit to MsTest

Our team is looking to switch from using mbunit to mstest, but there appears to be some disconnect between the two. Does anyone know how to simulate the CombinatorialTest and Factory attributes from ...
3
votes
1answer
99 views

Asynchronous tests in VSUTF, NUnit, xUnit.NET, MbUnit vs. SUTF?

Silverlight Unit Test Framework has an [Asynchronous] attribute (AsynchronousAttribute) that causes the tests to only end when EnqueueTestComplete() gets called. This allows for a simple way to write ...
3
votes
1answer
154 views

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 ...
3
votes
4answers
2k views

VS 2010 and MBUnit how to run just one test

I have Gallio/MbUnit installed and am using VS 2010 RC and I want to be able to run a single unit test or just all unit tests inside of a TestFixture and not all the tests in the entire project ...
3
votes
1answer
417 views

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

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?
3
votes
4answers
743 views

MbUnit: Comparing distinct object instances

I'd like to know whether there is a way to compare two objects in MBUnit so that the test is passed when the objects "look" the same, even if those are distinct instances? For example: ...
3
votes
1answer
926 views

Implementing NHibernate Unit Test to Generate Schema with VB.NET/MBUnit

I'm trying to implement unit tests for my NHibernate data access layer. The first test, which I drew from an example I found on the web ...
3
votes
1answer
344 views

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 ...
3
votes
2answers
993 views

Rhino Mocks, MbUnit: Best way to check if object has raised an event

I have an object that I'm testing that raises an event. What is the best way of using Rhino Mocks to check that it was raised? Best I could come up with (I am certain it gets better than this): ...
2
votes
2answers
77 views

Does Resharper 6.1 work with MBUnit?

Unfortunately Resharper has a long history of breaking MBUnit support with every new release. I noticed version 6.1 has been released, but I can't use it until it works properly with MBUnit. So, ...
2
votes
1answer
60 views

Anyone know what does mb stand for in the mbunit?

Just a little bit curious, what does "MB" mean in "MBUnit"?
2
votes
1answer
105 views

Invoking mbunit Test Runner Programmatically

I am currently building a test suite using mbunit. So far so good, but instead of using the included Icarus GUI, I want to have my own test runner. Not knowing much about what to do, I go on Gallio's ...
2
votes
3answers
124 views

What unit testing framework will meet my requirements?

This is all i'm looking for at a high level: The ability to run unit tests from within visual studio 2008 Compatibility with some code coverage tool A unit testing framework with a row testing ...
2
votes
1answer
192 views

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 ...
2
votes
1answer
761 views

Can MsTest unit tests be grouped in categories

In MbUnit one can do something like this: [Test] [TestCategory("Bad Arguments")] [TestCategory("Fast")] [ExpectedException(typeof(ArgumentNullException))] public void TestCopyWithBadHref() { . . . ...
2
votes
1answer
191 views

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] ...
2
votes
4answers
374 views

Skip unit test if csv file not found

I have a number of unit tests which rely on the presence of a csv file. They will throw an exception if this file doesn't exist obviously. Are there any Gallio/MbUnit methods which can conditionally ...
2
votes
2answers
242 views

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 ...
2
votes
2answers
113 views

How to unit test my project against different versions of external dll api?

I am developing an app that relies heavily on an external dll, my app needs to support new versions of the dll as well as being backwards compatible with the old ones. Are there any good ways to ...
2
votes
3answers
185 views

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 : ...
2
votes
2answers
444 views

Resharper Unit Test Runner executes unit tests sequentially or in parallel?

I would like to know if Resharper Unit Test runner runs unit tests sequentially or in parallell (each on its own thread). I am using MBUnit test framework. Thanks.
2
votes
1answer
490 views

Gallio Integration with NANT and CruiseControl.NET

In our build process we're currently using MBUnit 2.x tests, called from an NAnt task, called from CruiseControl.NET. I've uprgaded to Gallio and MBUnit 3.x locally and am able to run tests from ...
2
votes
1answer
442 views

How do I ignore a test conditionally in mbUnit?

I'm using TeamCity to do automated builds of test and production. TeamCity runs our mbUnit 3.1 tests at the end of the process with Gallio. When running the test build, Gallio should try to execute ...

1 2 3 4