0
votes
1answer
24 views
How does one create a global testfixturesetup routine with MBUnit and C#?
I'm using MBUnit for my test project and have a setup routine that must run before several different test fixtures can run properly.
Currently in each TestFixture I've got the [TestFixtureSetup] …
0
votes
1answer
27 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 …
0
votes
3answers
55 views
how to unit test an email rule
I download an employee's email into a table, I then take that collection of emails I just downloaded and run a bunch of rules on them.
e.g. if email from blah@email.com, route the email to folder1.
…
0
votes
2answers
81 views
Using WatiN through MbUnit to test ASP .Net MVC web application
I am trying to apply some WatiN UI tests to my new ASP .Net MVC application, running the WatiN tests through MbUnit, but am having some difficulties.
If I follow the instructions (exactly) on this …
3
votes
7answers
211 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.
2
votes
1answer
54 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?
1
vote
2answers
70 views
[.Net] Is it possible to change the way unit tests are invoked?
My guess is that the current semantics of unit testing involve actually calling the method, i.e., if I have a method MyTest() then that's what gets called. My question is this: is it possible to …
0
votes
2answers
43 views
How To Centrally Initialize an IOC Container in MbUnit?
We currently have a suite of integration tests that run via MbUnit test suites. We are in the process of refactoring much of the code to use an IOC framework (StructureMap).
I'd like to …
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 …
0
votes
2answers
53 views
Is this mbunit test really doing anything significant?
[Test]
public void TestUserProfileInsert()
{
using (new TestBindingsWrapper("TestBindings", "", new TestModule()))
{
// Setup the mock the dataprovider
MyMocks.MockDataProvider.Setup(x …
2
votes
1answer
56 views
Equivalent of assert.warning in mstest ?
is there a MsTest Equivalent of Assert.Warning in MbUnit ?
1
vote
2answers
93 views
Resharper running all tests when only a single one is selected
I'm using Resharper 4.5 with Visual Studio 2008 and MBUnit testing, and there seems to be something odd with using ReSharpher to run the tests.
On the side there are the icons beside the class each …
0
votes
1answer
250 views
Visual Studio .NET - MbUnit tests using Gallio Integration - issues with multiple asserts
I am using gallio to integrate mbunit's test runner with the mstest test runner in visual studio. it works VERY well - except when I am running a test with multiple assert statements. The test will …
0
votes
4answers
127 views
MbUnit: Comparing distinct object instances
Hi,
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:
…
