0
votes
3answers
51 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 …
0
votes
0answers
26 views
MbUnit/Resharper complaining about Rhino.Mocks when running tests from Visual Studio 2008
I have a project that contains my tests, and the project references a Rhino.Mocks v3.5 dll that is kept in a folder in the solution. When I open up MbUnit and load the test dll, I …
0
votes
2answers
46 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
206 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
29 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
34 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 …
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 …
0
votes
2answers
34 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 …
0
votes
2answers
50 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
50 views
Equivalent of assert.warning in mstest ?
is there a MsTest Equivalent of Assert.Warning in MbUnit ?
0
votes
1answer
215 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 …
4
votes
1answer
73 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
109 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
71 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 bes …
4
votes
5answers
437 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!
