active questions tagged mbunit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T06:28:46Zhttp://stackoverflow.com/feeds/tag/mbunithttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/261139/nunit-vs-mbunit-vs-mstest-vs-xunit-net30NUnit vs. MbUnit vs. MSTest vs. xUnit.net bitbonk2008-11-04T07:20:06Z2009-11-29T01:33:30Z
<p>There are quite a lot of unittesting frameworks out there for .NET. I found this little feature comparison: <a href="http://www.codeplex.com/xunit/Wiki/View.aspx?title=Comparisons" rel="nofollow">http://www.codeplex.com/xunit/Wiki/View.aspx?title=Comparisons</a></p>
<p>Now I am to choose the best one for us. But how? Does it matter? Which one is most future proof and has a decent momentum behind it? Should I care about the features? While xUnit seems to be most modern and specifically designed for .NET, nUnit again seems to be the one that is widely accepted. MSTest again is already integrated into Visual Studio ...</p>
http://stackoverflow.com/questions/1797828/gallio-and-mbunit-in-nant0Gallio and MbUnit in NAntBrett Rigby2009-11-25T15:46:20Z2009-11-25T16:01:25Z
<p>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.</p>
<p>I can get Gallio.Echo.exe to execute the tests and output an XML file (albeit it does seem to be checking all .dll files in the folder == approx. 6.5MB .xml file!!), but when I try to get NCover to link in also, it goes bang.</p>
<p>THEN: I tried to use the NAnt task using instructions <a href="http://blog.andreloker.de/post/2009/03/17/Using-Gallio-with-NCover.aspx" rel="nofollow">from here</a>, such as:</p>
<pre><code><gallio result-property="testrunner.exit-code"
application-base-directory="bin/debug"
runner-type="NCover"
failonerror="false"
report-name-format="gallio-MyTestProject"
report-types="xml"
report-directory="bin/debug">
<runner-property value="NCoverArguments='//q //ea CoverageExcludeAttribute //a MyTestProject.dll'" />
<runner-property value="NCoverCoverageFile='coverage-MyTestProject.xml'" />
<assemblies>
<include name="bin/debug" />
</assemblies>
</gallio>
</code></pre>
<p>but I get the following error on my command-line:</p>
<pre><code>Element Required! There must be a least one 'files' element for <gallio ... />.
</code></pre>
<p>I have tried to specify the .dll file that I'd like to check, but it still comes up with this message. Any suggestions are most appreciated!</p>
http://stackoverflow.com/questions/307363/how-to-set-execution-path-in-mbunit1How to set execution path in MbUnit?sloughk2008-11-21T00:06:57Z2009-11-20T15:00:03Z
<p>Is there anyway to set an execution path for the tested DLL so it can find resource folders when MbUnit copy files into a temporary folder.</p>
<p>Before you tell me:</p>
<ul>
<li>No I don't want to implement Dependency Injection</li>
<li>I've tried putting these extra files as as content and set behaviour to copy, still doesn't work</li>
</ul>
http://stackoverflow.com/questions/1110516/resharper-running-all-tests-when-only-a-single-one-is-selected0Resharper running all tests when only a single one is selectedBrandon2009-07-10T16:15:18Z2009-11-18T16:00:06Z
<p>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.</p>
<p>On the side there are the icons beside the class each test method with the options Run and Debug. When I select Run it just shows me the results of the single test. However I noticed that the test was taking a considerably long time to run.</p>
<p>When I ran Sql Server profiler and start stepping through the code, I realized that its not just running the selected test, but every single one in the class. Is there any reason it makes it look like its only running one unit test while actually running them all?</p>
<p>Its getting to be a pain waiting for all integration tests to run when I only care about the reuslt of one, is there any way to change this?</p>
http://stackoverflow.com/questions/1723199/how-to-unit-test-an-email-rule0how to unit test an email rulemrblah2009-11-12T15:48:37Z2009-11-12T16:20:22Z
<p>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.</p>
<p>e.g. if email from blah@email.com, route the email to folder1.</p>
<p>How could I write a unit test for this process?<br>
Would I have to create a dummy collection of emails, and then right a rule for each one?
I have a hard time breaking the unit test out, I always want to include database procedures into the test which I know is wrong.</p>
http://stackoverflow.com/questions/1694404/using-watin-through-mbunit-to-test-asp-net-mvc-web-application0Using WatiN through MbUnit to test ASP .Net MVC web applicationBrett Rigby2009-11-07T21:03:19Z2009-11-08T21:09:29Z
<p>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.</p>
<p>If I follow the instructions (exactly) on <a href="http://watin.sourceforge.net/gettingstarted.html" rel="nofollow">this page, then the google homepage loads, up the text is inserted, the search is done and the test passes. (no problem here).</p>
<p>However, when I simply change the URL of the line...</p>
<p>var ie = new IE(new Uri("http://www.google.co.uk"));</p>
<p>to the website hosted on my PC through IIS (on Win7), (e.g. to <a href="http://localhost/myapp/" rel="nofollow">http://localhost/myapp/</a>) the homepage of my application loads fine, but the test-runner seems to still be waiting for confirmation that the page has loaded and then the test fails due to a timeout.</p>
<p>Here's the failed response from within the IDE...</p>
<blockquote>
<p><strong>* Failures *</strong>
Exception
WatiN.Core.Exceptions.TimeoutException: Timeout while Internet Explorer state not complete
at WatiN.Core.UtilityClasses.TryFuncUntilTimeOut.ThrowTimeOutException(Exception lastException, String message)
at WatiN.Core.UtilityClasses.TryFuncUntilTimeOut.HandleTimeOut()
at WatiN.Core.UtilityClasses.TryFuncUntilTimeOut.Try1 func)
at WatiN.Core.WaitForCompleteBase.WaitUntil(DoFunc1 waitWhile, BuildTimeOutExceptionMessage exceptionMessage">T</a>
at WatiN.Core.Native.InternetExplorer.WaitForComplete.WaitWhileIEReadyStateNotComplete(IWebBrowser2 ie)
at WatiN.Core.Native.InternetExplorer.IEWaitForComplete.DoWait()
at WatiN.Core.DomContainer.WaitForComplete(IWait waitForComplete)
at WatiN.Core.IE.WaitForComplete(Int32 waitForCompleteTimeOut)
at WatiN.Core.DomContainer.WaitForComplete()
at WatiN.Core.Browser.GoTo(Uri url)
at WatiN.Core.IE.FinishInitialization(Uri uri)
at WatiN.Core.IE.CreateNewIEAndGoToUri(Uri uri, IDialogHandler logonDialogHandler, Boolean createInNewProcess)
at WatiN.Core.IE..ctor(Uri uri)
at FppRendersUI.Test.Program.DoSomething() in C:\Dev\MyCode.Test\Program.cs:line 18</p>
</blockquote>
<p>Anybody else get this, or is it just me?</p>
http://stackoverflow.com/questions/1484542/when-unit-testing-do-you-have-to-use-a-database-to-test-crud-operations3When unit testing, do you have to use a database to test CRUD operations?mrblah2009-09-27T21:34:35Z2009-11-04T09:17:21Z
<p>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?</p>
<p>I am using mbunit.</p>
http://stackoverflow.com/questions/1638097/can-a-gallio-mbunit-test-be-ran-without-installing-gallio2Can a Gallio/MbUnit Test be Ran without Installing Gallio?stung2009-10-28T15:42:37Z2009-10-28T17:39:27Z
<p>Hi all,</p>
<p>I've installed TestDriven.Net in Visual Studio 2008 and when I run a mbunit test from TD.Net I get this message:</p>
<blockquote>
<p>It looks like you're trying to execute a Gallio/MbUnit unit test.</p>
<p>For Gallio v3.0.6 build 787 / Gallio v3.1 build 313 or above (recommended):
Please ensure that the directory containing your 'MbUnit.dll' reference also contains Gallio's
test runner files ('MbUnit.dll.tdnet', 'TDNet\Gallio.TDNetRunner.dll', 'Gallio.dll' etc.)</p>
</blockquote>
<p>Well duh. I haven't installed Gallio yet and that's why it's complaining.</p>
<p>I know that I can easily install Gallio now and get over with it. However, I will really like to find out if I can run these tests without installing Gallio on every single developer's machine. <b>Can I include a couple of dll's in my bin directory to get this working?</b> </p>
<p>Has anyone had success with this before?</p>
<p>Note: I have followed the instructions in the message above and it didn't work.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1483766/is-this-mbunit-test-really-doing-anything-significant0Is this mbunit test really doing anything significant?ibraboy2009-09-27T15:14:17Z2009-10-28T14:53:48Z
<pre><code>[Test]
public void TestUserProfileInsert()
{
using (new TestBindingsWrapper("TestBindings", "", new TestModule()))
{
// Setup the mock the dataprovider
MyMocks.MockDataProvider.Setup(x => x.InsertUserProfile(It.IsAny<IUserProfile>())).Returns(1);
IUserProfile up = new UserProfile();
IUserProfileManager manager = new UserProfileManager();
int result = manager.Insert(up);
Assert.AreEqual(1, result);
MyMocks.MockDataProvider.Verify(x => x.InsertUserProfile(up), Times.Once());
}
}
</code></pre>
<p>I am using ninject also. It seems since I am setting the return value, what really is being tested, is this a joke or I am missing something?</p>
http://stackoverflow.com/questions/1627827/using-mbunit-to-test-values-against-a-database2Using MBUnit to test values against a databaseDat2009-10-26T22:59:44Z2009-10-26T23:28:03Z
<p>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?</p>
http://stackoverflow.com/questions/1595586/how-to-centrally-initialize-an-ioc-container-in-mbunit0How To Centrally Initialize an IOC Container in MbUnit?Phil Sandler2009-10-20T15:45:45Z2009-10-20T19:17:26Z
<p>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).</p>
<p>I'd like to configure/initialize the container ONCE when the MBUnit test runner fires up, using the same registry code that we use in production.</p>
<p>Is there a way of achieving this in MbUnit?</p>
<p>(EDIT) The version of MbUnit is 2.4.197.</p>
http://stackoverflow.com/questions/449853/my-resharper-gutter-icons-for-unit-tests-arent-showing0My ReSharper Gutter Icons for Unit Tests aren't showingLance Fisher2009-01-16T08:36:57Z2009-10-10T12:00:02Z
<p>I've installed ReSharper 4.1 and Gallio 3.0.5, but I don't get the gutter icons for unit tests. The tests seem to run fine in the Test Explorer, but I don't have icons next to the tests in code. What could be causing this? I previously had the MbUnit 2.4 ReSharper plugin installed, but it should be uninstalled now.</p>
http://stackoverflow.com/questions/881537/do-you-know-any-tutorial-for-mbunit4do you know any tutorial for MBUnit?Uince2009-05-19T08:17:12Z2009-10-08T16:00:30Z
<p>Hi,
It looks a bit hard to find documentation about MBUnit, do you know any tutorial?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/57512/users-of-gallio-what-advantages-and-disadvantages-have-you-experienced-using-thi7Users of Gallio, what Advantages and Disadvantages have you experienced using this Tool?Troy DeMonbreun2008-09-11T20:17:58Z2009-10-08T11:12:43Z
<p>For those of you familiar with <a href="http://www.gallio.org" rel="nofollow">Gallio</a>, what Advantages and Disadvantages have you experienced using this tool, a so-called Test Automation Platform?</p>
http://stackoverflow.com/questions/1515706/-net-is-it-possible-to-change-the-way-unit-tests-are-invoked1[.Net] Is it possible to change the way unit tests are invoked?Dmitri Nesteruk2009-10-04T05:47:15Z2009-10-04T11:05:57Z
<p>My guess is that the current semantics of unit testing involve actually calling the method, i.e., if I have a method <code>MyTest()</code> then that's what gets called. My question is this: is it possible to somehow change the pipeline of the way tests are executed (preferably without recompiling the test runner) so that, say, instead of calling the method directly it's called via a wrapper I provide (i.e., <code>MyWrapper(MyTest)</code>)?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1369763/equivalent-of-assert-warning-in-mstest2Equivalent of assert.warning in mstest ?Yassir2009-09-02T19:50:47Z2009-10-03T20:47:12Z
<p>is there a MsTest Equivalent of Assert.Warning in MbUnit ?</p>
http://stackoverflow.com/questions/608629/team-foundation-server-and-mbunit-testing1Team Foundation Server and MbUnit TestingB. Tyndall2009-03-03T23:06:15Z2009-09-26T17:00:02Z
<p>I'm really new to TFS Server and MbUnit.</p>
<p>What steps do you need to do to make the builds on TFS run your MbUnit tests?</p>
http://stackoverflow.com/questions/1438698/are-there-any-plans-for-microsoft-to-support-testing-frameworks-other-than-mstest4Are there any plans for Microsoft to support testing frameworks other than MSTest?JNappi2009-09-17T12:52:57Z2009-09-18T13:45:56Z
<p>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 within microsoft to allow for swapping out MStest for nUnit, mbUnit or others. Obviosly nothing prevents me from using these other frameworks but they aren't integrated into the IDE.</p>
http://stackoverflow.com/questions/1358770/gallio-integration-with-nant-and-cruisecontrol-net0Gallio Integration with NANT and CruiseControl.NETL. Moser2009-08-31T18:32:27Z2009-09-02T09:20:16Z
<p>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 VS2008. I'm having trouble getting our build process upgraded. It looks like we have two options, either run the tests from CruiseControl.net or from NAnt. Based on this, I have two questions:</p>
<ol>
<li><p>With all other things being equal, <strong>where should these tests be run, NAnt or CruiseControl.net, or does it really matter at all?</strong></p></li>
<li><p><strong>If you like doing this sort of thing in NAnt, do you have any documentation or examples of how to implement it</strong>? I've found documentation for the CC.NET soution in my Gallio\extra\CCNet directory in the Gallio installation. </p></li>
</ol>
<p>Thanks</p>
http://stackoverflow.com/questions/1327567/mbunit-comparing-distinct-object-instances0MbUnit: Comparing distinct object instancesAdrian Grigore2009-08-25T11:09:34Z2009-08-27T17:26:52Z
<p>Hi,</p>
<p>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? </p>
<p>For example: </p>
<pre><code>[TestFixture]
class ComparisonTestFixture
{
class foo
{
public string bar;
}
[Test]
public void ComparisonTest()
{
foo foo1 = new foo()
{
bar = "baz"
};
foo foo2 = new foo()
{
bar = "baz"
};
//This assertion should be successful, but it isn't
//*** Failures ***
//Expected values to be equal.
//Expected Value & Actual Value : {foo: bar = "zzz...."}
//Remark : Both values look the same when formatted but they are distinct instances.
Assert.AreEqual(foo1,foo2);
}
}
</code></pre>
<p>Assert.AreEqual() does not work for this (test fails, see source code above). Since it remarks that "Both values look the same when formatted but they are distinct instances", I figure there must be some way to do this built into MbUnit already without serializing the objects to XML in my own code. </p>
<p>Do I have to write my own Assert extension method for this?</p>
http://stackoverflow.com/questions/1237933/usingfactories-alternative-in-mbunit-v30UsingFactories alternative in MbUnit v3.mark2009-08-06T09:43:46Z2009-08-24T15:32:08Z
<p>Dear ladies and sirs.</p>
<p>I am trying to figure out how to write combinatorial test in MbUnit v3. All of the sample code on the web refers to MbUnit v2, which means using 3 attributes:</p>
<ul>
<li>CombinatorialTest</li>
<li>Factory</li>
<li>UsingFactories</li>
</ul>
<p>In MbUnit v3 there is no UsingFactories attribute (and the Factory attribute semantics is widely different and CombinatorialTest attribute is no longer needed). So how can I tell which factory method bind to which parameter in the particular unit test method?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1294538/visual-studio-net-mbunit-tests-using-gallio-integration-issues-with-multiple0Visual Studio .NET - MbUnit tests using Gallio Integration - issues with multiple assertsJason Irwin2009-08-18T15:14:11Z2009-08-20T05:36:16Z
<p>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 either pass or fail based on the FIRST assert statement. I know a lot of people are against multiple asserts, but they are unavoidable in cases such as rowtests and combinatorial tests which receive multiple lines of input. All tests will be run successfully if executed from gallio's icarus gui. Has anyone else come across/fixed this issue?</p>
<p><strong>Edit: Here is a code sample</strong></p>
<p>(I obviously get the same results in c#)</p>
<pre><code><Test()> _
<MultipleAsserts()> _
<Row(3, 3)> _
<Row(3, 17)> _
<Row(1, 2)> _
Public Sub MyRowTest(ByVal val1 As Int32, ByVal val2 As Int32)
Assert.AreEqual(Of Int32)(val1, val2)
End Sub
</code></pre>
<p>When run through Visual Studio the test passes and I get:</p>
<blockquote>
<p>MyRowTest(3,3) Duration: 0.016s,</p>
<p>Assertions: 2</p>
</blockquote>
http://stackoverflow.com/questions/1284777/ncover-mbunit-command-line-profiler-connection-can-not-connect0NCover, Mbunit, command line Profiler connection can not connect?skurge2009-08-16T17:00:26Z2009-08-16T17:00:26Z
<p>I am trying to use NCover 1.5.8 with Mbunit 2.4.2.130. I am using the following example from a bat file. I everytime I try running this, it tells that I can not connect to the NCOVER process?</p>
<p>SET NCOVERPATH=C:\Code\rsinetmvc\branches\web_app\trunk\build_tools\ncover\
REM Target path for assembly output, and report output.
SET TARGETPATH=C:\Code\rsinetmvc\branches\web_app\trunk\product\RSINET.MVC.Tests\bin\debug\
SET MBUNITPATH=C:\Code\rsinetmvc\branches\web_app\trunk\thirdparty\mbunit\</p>
<p>echo %NCOVERPATH%
echo %TARGETPATH%
echo %MBUNITPATH%
echo %REPORTFILEPATH%
echo %MBUNITPATH%mbunit.cons.exe
echo %TARGETPATH%RSINET.MVC.Tests.dll</p>
<p>"%NCOVERPATH%ncover.console.exe" //w %TARGETPATH% //a RSINET.MVC.Tests //h %REPORTFILEPATH% "%MBUNITPATH%mbunit.cons.exe" "%TARGETPATH%RSINET.MVC.Tests.dll" </p>
http://stackoverflow.com/questions/1279175/how-do-i-ignore-a-test-conditionally-in-mbunit1How do I ignore a test conditionally in mbUnit?ranomore2009-08-14T17:42:22Z2009-08-14T20:54:09Z
<p>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. </p>
<p>When running the test build, Gallio should try to execute tests against the test database server. However, when running a production build, these tests should not be run because TeamCity can't access the production database server (and if even if the production database was available, many tests would fail with unreleased code).</p>
<p><strong>How can I mark a test so that it gets ignored in mbUnit based on a boolean value such as IsDBOnline?</strong></p>
http://stackoverflow.com/questions/1268340/how-can-i-emulate-mbunits-multipleculture-attribute-in-mstest1How can I emulate MbUnit's [MultipleCulture] attribute in MSTest?Eddie Butt2009-08-12T19:51:30Z2009-08-13T10:19:11Z
<p>MbUnit has a great attribute: <a href="http://www.gallio.org/api/html/T%5FMbUnit%5FFramework%5FMultipleCultureAttribute.htm" rel="nofollow">MultipleCultureAttribute</a>.</p>
<p>I am wondering if there is an easy way to do this in MSTest? So far, the best I can come up with is:</p>
<ul>
<li>Externalizating the actual test code to a private method</li>
<li>Saving the current culture</li>
<li>Setting the culture and calling the private method (repeated for each culture)</li>
<li>And finally, reverting to the original culture</li>
</ul>
<p>At best, it can be described as ugly ... and verbose.</p>
http://stackoverflow.com/questions/1268394/how-to-mock-just-a-method1How to mock just a method?Zote2009-08-12T20:00:57Z2009-08-12T20:41:44Z
<p>I need to mock just Method1 to test my process exception. How I can do that?</p>
<pre><code>public interface IFoo
{
void Method1();
object Method2();
}
public class Foo : IFoo
{
public void Method1()
{
// Do something
}
public object Method2()
{
try
{
// Do something
Method1();
// Do somenthing
return new object();
}
catch (Exception ex)
{
// Process ex
return null;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1091451/use-of-mbunit-in-nant-fails0Use of <mbunit> in NAnt failsGanesh Astroved2009-07-07T10:07:28Z2009-08-03T17:08:02Z
<p>Hi Everyone,</p>
<p>I got stuck up when I tried to run the Unit Test written using mbunit from NAnt. when I tried this lines of code in NAntbuilder.</p>
<pre><code><mbunit
report-types="Html;Xml;Text"
report-filename-format="${test_results.file}"
report-output-directory="${test_results.directory}"
halt-on-failure="true"
failonerror="true">
<assemblies>
<include name="${build.directory}\*Test*dll" />
</assemblies>
</mbunit >
</code></pre>
<p>I got an error message </p>
<p>BUILD FAILED</p>
<p>./.../mbunit.build(26,5):</p>
<p>Invalid element <mbunit>. Unknown task or datatype.</p>
<p>I have copied the mbunit.framework.dll, quickgraphalgorithm.dll,quickgraph.dll to NAnt's bin folder. </p>
<p>Could you please any of you help me out to run the mbunit test from NAnt.</p>
<p>Thanks in Advance,</p>
<p>Ganesh</p>
http://stackoverflow.com/questions/1171402/is-it-possible-to-have-factory-tests-in-mstest-like-in-mbunit0Is it possible to have factory tests in mstest, like in MbUnit?mark2009-07-23T12:24:56Z2009-07-25T23:11:48Z
<p>Dear ladies and sirs.</p>
<p>We are using mstest for unit tests at our company. The main reason is that there is no free Visual Studio integration for MbUnit (TestDriven.NET is not free for companies).</p>
<p>Recently, I have stumbled upon a need to run the same unit tests on two different implementations of the same interface. From my past experience I know it is easy to do with MbUnit. But, how to do it with MSTest?</p>
<p>I stress the point that I need separate results for each interface, so, please, do not offer things like running the same method twice - once per interface - from the same unit test method, because doing so yields only one result.</p>
<p>I am aware of the data driven solution and using it now, but it is a pain in the a*s. Is there an easier way, the MbUnit way?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1076447/setting-up-hudson-with-selenium-rc-to-run-tests-written-in-c0Setting up Hudson with Selenium RC to run tests written in C#Seiti2009-07-02T20:10:35Z2009-07-23T19:30:26Z
<p>I just deployed a Hudson server and configured it to checkout, build and deploy to a testing http server.</p>
<p>Now I want more =)</p>
<p>I have some Selenium RC tests wrtten in C#/.Net, using the MbUnit infrastructure, that runs ok on Gallio Icarus.</p>
<p>How to setup Hudson to run these tests? Our is in a Windows 2003 server.</p>
<p>I was thinking about just setting a batch script that runs the tests. But how to run them in CLI? Is there a CLI test runner that could run our tests?</p>
http://stackoverflow.com/questions/3984/testdriven-net-is-not-running-my-setup-methods-for-mbunit4TestDriven.NET is not running my SetUp methods for MbUnitLance Fisher2008-08-06T21:06:32Z2009-07-22T15:54:27Z
<p>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 ReSharper MbUnit plugin. However, when I run the tests with TestDriven.NET it does not run the SetUp methods at all. </p>
<p>Does anyone know if this is a bug with TestDriven.NET or if I have something setup wrong?</p>