31
votes
7answers
4k 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://www.codeplex.com/xunit/Wiki/View.aspx?title=Comparisons
Now I am to choose the best …
7
votes
6answers
655 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?
5
votes
7answers
3k 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 …
4
votes
1answer
75 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 …
4
votes
5answers
477 views
do you know any tutorial for MBUnit?
Hi,
It looks a bit hard to find documentation about MBUnit, do you know any tutorial?
Thank you!
4
votes
3answers
442 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
9answers
875 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 …
4
votes
4answers
469 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 …
3
votes
7answers
210 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.
3
votes
2answers
372 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 …
3
votes
3answers
1k views
TestDriven.net with Gallio, MbUnit and NCover problems
Hi,
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 …
3
votes
2answers
392 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
1answer
53 views
Can a Gallio/MbUnit Test be Ran without Installing Gallio?
Hi all,
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 …
2
votes
1answer
39 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?
2
votes
1answer
56 views
Equivalent of assert.warning in mstest ?
is there a MsTest Equivalent of Assert.Warning in MbUnit ?
