Tagged Questions

0
votes
1answer
15 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 …
3
votes
7answers
196 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. …
1
vote
1answer
17 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 …
2
votes
1answer
24 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 solut …
0
votes
2answers
32 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 …
1
vote
2answers
69 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 …
0
votes
2answers
49 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.Mock …
3
votes
1answer
43 views

Equivalent of assert.warning in mstest ?

is there a MsTest Equivalent of Assert.Warning in MbUnit ?
4
votes
1answer
68 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 aw …
0
votes
4answers
99 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? F …
0
votes
1answer
185 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 statemen …
1
vote
3answers
115 views

How to mock just a method?

I need to mock just Method1 to test my process exception. How I can do that? public interface IFoo { void Method1(); object Method2(); } public class Foo : IFoo { publ …
0
votes
1answer
88 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 …
4
votes
5answers
390 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!
1
vote
1answer
54 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 sh …

1 2 3 4 5 next
15 30 50 per page