0
votes
1answer
20 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
24 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
54 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
69 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 …
2
votes
1answer
51 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?
0
votes
2answers
40 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 …
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 …
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.
0
votes
2answers
52 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 …
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 …
2
votes
1answer
55 views
Equivalent of assert.warning in mstest ?
is there a MsTest Equivalent of Assert.Warning in MbUnit ?
0
votes
1answer
109 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 …
0
votes
4answers
124 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:
…
0
votes
1answer
239 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 …
