active questions tagged nunit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T11:39:01Zhttp://stackoverflow.com/feeds/tag/nunithttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1925748/my-class-has-30-properties-unit-testing-is-a-pain-no1my class has 30 properties, unit testing is a pain no?mrblah2009-12-18T01:30:10Z2009-12-18T02:26:50Z
<p>My class has like 30-40 properties, and I really want to unit test.</p>
<p>But I have to create a moq instance (many of them, with different combinations etc).</p>
<p>Is there an easy way? This is real work!</p>
<p>My class can't be refactored, "trust me" (hehe, no really it can't, they are just properties of the object that are very tightly coupled).</p>
http://stackoverflow.com/questions/1924837/rhino-mocks-naming-expectations1Rhino mocks naming expectationsDon Kirkby2009-12-17T21:50:22Z2009-12-17T21:53:50Z
<p>My object under test has two dependency objects of the same type. Sometimes when a test has a failed expectation, it's not clear which dependency object set that expectation. Is there some way to give the dependency objects names that will appear in the error messages so that I can tell them apart?</p>
<p>Here's an example:</p>
<pre><code> MockRepository mocks = new MockRepository();
var xAxis = mocks.StrictMock<IAxis>();
var yAxis = mocks.StrictMock<IAxis>();
Ball ball;
using (mocks.Record())
{
Expect.Call(xAxis.Velocity).Return(100);
Expect.Call(yAxis.Velocity).Return(0);
}
using (mocks.Playback())
{
ball = new Ball(xAxis, yAxis);
ball.Bounce();
}
</code></pre>
<p>Now if there's something wrong with the Bounce code, I might get a message like this:</p>
<blockquote>
<p>Rhino.Mocks.Exceptions.ExpectationViolationException :
IAxis.get_Velocity(); Expected #1, Actual #0.</p>
</blockquote>
<p>I can't easily tell which axis got missed.</p>
http://stackoverflow.com/questions/1923855/why-would-i-unit-test-this-controllers-action0Why would I unit test this controller's action?mrblah2009-12-17T19:00:11Z2009-12-17T20:45:59Z
<p>I have a ArticleController that displays a list of articles according to a category.</p>
<pre><code>public ActionResult List(string categoryname)
{
MyStronglyTypedViewData vd = new MyStronglyTypedViewData();
DBFactory factory = new DBFactory();
categoryDao = factory.GetCategoryDao();
articleDao = factory.GetArticleDao();
vd.Category = categoryDao.GetByName(categoryname);
vd.Articles = articleDao.GetByCategoryId(vd.Category.Id);
return View(vd);
}
</code></pre>
<p>If I was to unit test this action, what exactly would be the purpose?
TO make sure the correct view is being opened?</p>
http://stackoverflow.com/questions/1836474/does-nunit-have-a-built-in-way-of-calling-tests-from-another-unit0Does NUnit have a built in way of calling tests from another unit?phrankbooth2009-12-02T22:58:58Z2009-12-17T18:22:31Z
<p>Hi,</p>
<p>I need to call a Test from a different unit to use in my current unit (by unit I mean class). Does NUnit have infrastructure to do that or should I just keep doing what I'm doing; instantiating the class and invoking the method?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1876408/how-to-pass-the-assembly-name-as-a-command-line-argument-when-debugging1How to pass the assembly name as a command-line argument when debuggingJim McKeeth2009-12-09T19:56:24Z2009-12-17T18:06:31Z
<p>I have an NUnit test assembly (a .NET DLL). When I click Run in Visual Studio I want it to launch NUnit and run the tests in this assembly. I can do all of that.</p>
<p>Instead of specifying the full assembly name and path in the command line arguments, does Visual Studio support some sort of macro that expands into that for the Command Line Arguments box? Most other development tools I have used support this, but I cannot find anything in the documentation about this. </p>
<p>I was expecting something like: <strong>%assembly_full_path%</strong></p>
<p>The reason I want to do this is so if the assembly name or build location changes, then I don't have to update the command line arguments as well.</p>
http://stackoverflow.com/questions/1907479/how-can-i-detect-if-an-nunit-test-is-running-from-within-teamcity0How can I detect if an NUnit test is running from within TeamCity?ripper2342009-12-15T13:30:49Z2009-12-17T14:45:55Z
<p>I need to run some code only if I'm running from within the TeamCity test launcher. What's the easiest way to detect this?</p>
http://stackoverflow.com/questions/1554018/unit-test-nunit-or-visual-studio4Unit test, NUnit or Visual studio ?Tim2009-10-12T11:24:23Z2009-12-17T09:50:45Z
<p>Hi all,</p>
<p>I'm using Visual studio (sometimes resharper) to run my unit test.</p>
<p>I heard about NUnit, but I don't know many things about it...</p>
<p>Should I care about it ? Can it offer something better than visual studio ? Should I Use NUnit and why ?</p>
<p>Thanks for your help</p>
<p>Tim</p>
http://stackoverflow.com/questions/1716346/testing-things-that-should-be-the-same-both-ways1Testing things that should be the same both waysSvish2009-11-11T16:29:17Z2009-12-16T19:48:08Z
<p>For example the Equals method. <code>a</code> should equal <code>b</code> and <code>b</code> should equal <code>a</code>. Would you say it is OK to check this in one test case using two asserts like the following:</p>
<pre><code>[Test]
public void Equals_TwoEqualObjects_ReturnsTrue()
{
var a = new Something();
var b = new Something();
Assert.That(a.Equals(b), Is.True);
Assert.That(b.Equals(a), Is.True);
}
</code></pre>
<p>Or do you think this should be done in two separate tests so that you won't have two asserts in the test?</p>
<p>I'm thinking having two asserts in this case may be cleaner, because I am not sure what I would call the two separate tests, and I am kind of thinking it doesn't matter which one of the asserts that break the test. But anyways, I am curious to know what others think about this since I am kind of a newbie in this area :)</p>
http://stackoverflow.com/questions/1451281/tdd-in-a-text-file-import-project2TDD in a text file import projectProfK2009-09-20T15:32:05Z2009-12-16T19:46:32Z
<p>I'm just starting, and yes, i haven't written any tests yet (I'm not a fundamentalist, I don't like compile errors just because there is no test), but I'm wondering where to get started on doing a project that parses fixed length flat file records according to an XML mapping, into a class that represents the superset of all file layouts, before writing (with transformation) the class details to a DB table.</p>
<p>There are so many external factors, and I don't want to mock them all, so where or how would be a good way to start test driving this project?</p>
http://stackoverflow.com/questions/1454270/is-there-a-tfs-check-in-policy-for-nunit-and-ncover0Is there a TFS check-in policy for Nunit and NCover?sagie shamay2009-09-21T12:25:18Z2009-12-16T19:00:02Z
<p>Hi.
I would like to enforce my users to run unit tests and code coverage,
but we are using Nunit and NCover, not MS Team system unit test\ coverage framework.</p>
<p>How canI do it? Is there a matching check-in policy?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1915801/structuremap-is-not-reset-between-nunit-tests0StructureMap is not reset between NUnit testsparcydarks2009-12-16T16:21:47Z2009-12-16T18:55:39Z
<p>I'm testing some code that uses StructureMap for Inversion of Control and problems have come up when I use different concrete classes for the same interface.</p>
<p>For example:</p>
<pre><code>[Test]
public void Test1()
{
ObjectFactory.Inject<IFoo>(new TestFoo());
...
}
[Test]
public void Test2()
{
ObjectFactory.Initialize(
x => x.ForRequestedType<IFoo>().TheDefaultIsConcreteType<RealFoo>()
);
// ObjectFactory.Inject<IFoo>(new RealFoo()) doesn't work either.
...
}
</code></pre>
<p>Test2 works fine if it runs by itself, using a RealFoo. But if Test1 runs first, Test2 ends up using a TestFoo instead of RealFoo. Aren't NUnit tests supposed to be isolated? How can I reset StructureMap?</p>
<p>Oddly enough, Test2 fails if I don't include the Initialize expression. But if I do include it, it gets ignored...</p>
http://stackoverflow.com/questions/1915685/how-would-i-unit-test-this-nhibernate-query1how would I unit test this nhibernate query?mrblah2009-12-16T16:08:39Z2009-12-16T18:51:00Z
<pre><code>public Category GetByName(string name)
{
Category category = Session.CreateCriteria(typeof (Category))
.Add(Expression.Eq("Name", name))
.UniqueResult<Category>();
return category;
}
</code></pre>
<p>Or is it so clear that it doesn't need testing?</p>
http://stackoverflow.com/questions/1888614/environment-currentdirectory-with-nunit-gui-differs-to-the-teamcity-value-how-ca0Environment.CurrentDirectory with NUnit GUI differs to the TeamCity value, how can I sync them?John_2009-12-11T14:57:18Z2009-12-15T16:41:42Z
<p>As above really, I have some integration tests that use files from a relative file path. To help picture it here is the file structure:</p>
<pre><code>/Dependencies
/VideoTests/bin/release/video.dll
/SearchTests/bin/release/search.dll
/OtherProjects
</code></pre>
<p>The GUI is running the tests from the root, however when TeamCity runs the tests it is running the tests from each test dlls bin directory. Now I don't mind which one I can get to follow the other but I do need them to be the same otherwise my relative paths just won't work!</p>
<p>Any ideas?</p>
<p>P.S. Using TeamCity 5.0 and NUnit 2.5.</p>
http://stackoverflow.com/questions/1883692/unit-testing-sqlite-membership-provider-in-mvc-app2Unit Testing Sqlite Membership Provider in MVC appsplatto2009-12-10T20:13:55Z2009-12-15T14:53:26Z
<p>I've created an MVC application and I've set up <a href="http://www.codeproject.com/KB/aspnet/SQLite-Providers.aspx" rel="nofollow">Roger Martin's sqlite Providers</a> in place of the default Providers. I'm curious about how I would go about unit testing these. </p>
<p>Below is a stripped down method that has many validations, only one of which is still present. Among other things, I want to write tests that ensures one can't register if the username has been taken, and can register if the username is free (and other validations pass), etc.</p>
<p>I can see how unit tests could determine success or failure, but not failure for a specific reason, unless I check the output MembershipCreateStatus parameter but I'm not sure if there is a better way. Further, what I need to give for object providerUserKey? Any insight would be very helpful.</p>
<pre><code> public override MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status)
{
//some validations, and then:
MembershipUser u = GetUser(username, false);
if (u == null)
{
///register user
status = MembershipCreateStatus.Success;
return GetUser(username, false);
}
else
{
status = MembershipCreateStatus.DuplicateUserName;
}
return null;
}
</code></pre>
http://stackoverflow.com/questions/1890551/unit-testing-a-winforms-event-driven-architecture1Unit testing a Winforms event driven architecturejoemoe2009-12-11T20:09:26Z2009-12-11T20:15:01Z
<p>What approach should I take (if it's even possible) to unit test a standard event driven Winforms app where display and logic are mixed together.</p>
http://stackoverflow.com/questions/1887969/keynotfoundexception-but-not-when-debugging0KeyNotFoundException, but not when debugging.Matthew Abbott2009-12-11T13:09:30Z2009-12-11T13:52:08Z
<p>I've been building an extensions library, and I've utilised a great extension method found at <a href="http://www.extensionmethod.net" rel="nofollow">http://www.extensionmethod.net</a> for inclusion. In my unit test (using NUnit 1.5.2), I've come across an interesting issue. Firstly, lets look at the code:</p>
<pre><code> /// <summary>
/// Groups and aggregates the sequence of elements.
/// </summary>
/// <typeparam name="TSource">The source type in the sequence.</typeparam>
/// <typeparam name="TFirstKey">The first key type to group by.</typeparam>
/// <typeparam name="TSecondKey">The second key type to rotate by.</typeparam>
/// <typeparam name="TValue">The type of value that will be aggregated.</typeparam>
/// <param name="source">The source sequence.</param>
/// <param name="firstKeySelector">The first key selector.</param>
/// <param name="secondKeySelector">The second key selector.</param>
/// <param name="aggregator">The aggregating function.</param>
/// <returns>A <see cref="Dictionary{TKey,TValue}" /> representing the pivoted data.</returns>
public static Dictionary<TFirstKey, Dictionary<TSecondKey, TValue>> Pivot<TSource, TFirstKey, TSecondKey, TValue>
(this IEnumerable<TSource> source,
Func<TSource, TFirstKey> firstKeySelector,
Func<TSource, TSecondKey> secondKeySelector,
Func<IEnumerable<TSource>, TValue> aggregator)
{
return source.GroupBy(firstKeySelector).Select(
x => new
{
X = x.Key,
Y = x.GroupBy(secondKeySelector).Select(
z => new { Z = z.Key, V = aggregator(z) }).ToDictionary(e => e.Z, o => o.V)
}).ToDictionary(e => e.X, o => o.Y);
}
</code></pre>
<p>What the function does, is takes in an IEnumerable of type TSource, and pivots the items into a dictionary, and aggregates the items using whatever function you define. My sample set of data is an array of people (in a type called Person).</p>
<pre><code> private static readonly Person[] people =
new[]
{
new Person { Forename = "Matt", Surname = "Someone", Email = "matthew@somewhere.com", Age = 25, IsMale = true },
new Person { Forename = "Chris", Surname = "Someone", Email = "chris@somewhere.com", Age = 28, IsMale = false },
new Person { Forename = "Andy", Surname = "Someone", Email = "andy@somewhere.com", Age = 30, IsMale = true },
new Person { Forename = "Joel", Surname = "Someone", Email = "joel@somewhere.com", Age = 30, IsMale = true },
new Person { Forename = "Paul", Surname = "Someone", Email = "paul@somewhere.com", Age = 30, IsMale = true }
};
</code></pre>
<p>And lastly, we do our test:</p>
<pre><code> /// <summary>
/// Performs a pivot function on the sample array.
/// </summary>
[Test]
public void Pivot()
{
/* Our sample data is an array of Person instances.
* Let's organise it first by gender (IsMale), and then by Age.
* Finally, we'll return a count. */
var organised = people.Pivot(p => p.IsMale, p => p.Age, l => l.Count());
Assert.IsTrue(organised.Count == 2, "More than two genders were returned.");
Assert.IsTrue(organised[true].Count == 2, "More than two ages were returned for males.");
Assert.IsTrue(organised[false].Count == 1, "More than 1 age was returned for females.");
int count = organised[true][30];
Assert.IsTrue(count == 3, "There are more than 3 male 30 year olds in our data.");
}
</code></pre>
<p>What is being returned in this test case, is a Dictionary> instance. The boolean is a result of the IsMale group by, and in our sample data, correctly returns 2 items, true and false. The inner dictionary has a key of the age, and a value of the count. In our test data, organised[true][30] reflects all males of the age of 30 in the set. </p>
<p>The problem is not the pivot function itself, but for some reason, when we run this through both the NUnit Test Runner, and Resharper's Unit Test Runner, the test fails, reporting a KeyNotFoundException for the line "int count = organised[true][30];". When we debug this test, it correctly returns the value 3 (as in our sample data, we have 3 males of the age 30).</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/1886845/msbuild-testrunconfig-for-nunit0msbuild: TestRunConfig for NUnitMarius Ingjer2009-12-11T09:27:07Z2009-12-11T09:27:07Z
<p>We are migrating from mstest to NUnit. The first step was to migrate all our UnitTests projects which was accomplished using the following msbuild task:</p>
<pre><code><Target Name="RunTests">
<!-- The location of the necessary tools to run nunit tests -->
<PropertyGroup>
<NUnitToolPath>C:\Program Files\NUnit 2.5.2\bin\net-2.0</NUnitToolPath>
<NUnitResultTool>C:\Program Files\NUnit For Team Build Version 1.2</NUnitResultTool>
</PropertyGroup>
<!-- Create a build step representing running nunit tests -->
<BuildStep TeamFoundationServerUrl="$(TeamFoundationServerUrl)" BuildUri="$(BuildUri)" Name="NUnitTestStep" Message="Running Nunit Tests">
<Output TaskParameter="Id" PropertyName="NUnitStepId" />
</BuildStep>
<!-- Specify which dll's to include when running tests -->
<CreateItem Include="$(OutDir)\Profdoc.UnitTests*.dll">
<Output TaskParameter="Include" ItemName="TestAssembly" />
</CreateItem>
<NUnit
Assemblies="@(TestAssembly)"
ToolPath="$(NUnitToolPath)"
OutputXmlFile="$(OutDir)\NUnit_TestResults.xml"
ContinueOnError="true">
<Output TaskParameter="ExitCode" PropertyName="NUnitResult" />
</NUnit>
<!-- Update the build step result based on the output from the NUnit task -->
<BuildStep Condition="'$(NUnitResult)'=='0'" TeamFoundationServerUrl="$(TeamFoundationServerUrl)" BuildUri="$(BuildUri)" Id="$(NUnitStepId)" Status="Succeeded" />
<BuildStep Condition="'$(NUnitResult)'!='0'" TeamFoundationServerUrl="$(TeamFoundationServerUrl)" BuildUri="$(BuildUri)" Id="$(NUnitStepId)" Status="Failed" />
<!-- Upload the results to TFS. -->
<Exec Command="&quot;$(NUnitResultTool)\NUnitTFS.exe&quot; -n &quot;$(OutDir)\NUnit_TestResults.xml&quot; -t &quot;$(TeamProject)&quot; -b &quot;$(BuildNumber)&quot; -f &quot;%(ConfigurationToBuild.FlavorToBuild)&quot; -p &quot;%(ConfigurationToBuild.PlatformToBuild)&quot; -x &quot;$(NUnitResultTool)\NUnitToMSTest.xslt&quot;" />
<!-- Indicate build failure if any tests failed -->
<Error Condition="'$(NUnitResult)'!='0'" Text="Unit Tests Failed" />
</Target>
</code></pre>
<p>But i'm at a loss as to how we are going to accomplish the same with out integration tests, because we need to deploy settings and licence files to the binary folder before running the tests. So, how can i deploy files to the binary folder, preferably as a part of the NUnit task (because i want to run the IntegrationTests against different configuration setups)?</p>
http://stackoverflow.com/questions/342128/minimum-nunit-binaries-for-an-oss-project3Minimum NUnit binaries for an OSS projectAtif Aziz2008-12-04T21:22:59Z2009-12-11T07:13:19Z
<p>Open Source projects that ship with unit tests based on NUnit also usually ship the NUnit runners and accompanying binaries. For NUnit 2.4.8, distributing its <code>bin</code> directory verbatim with the actual project amounts to 46 files and a blank <code>addins</code> directory. What would be the minimum set of files needed if all one wanted was to distribute the GUI and console runners along with the base <code>nunit.framework.dll</code> required for authoring tests (and without the mocking infrastructure)?</p>
<p>For reference, the NUnit 2.4.8 <code>bin</code> directory looks like this:</p>
<ul>
<li>addins/</li>
<li>clr.bat</li>
<li>failure.jpg</li>
<li>fit.dll</li>
<li>ignored.jpg</li>
<li>loadtest-assembly.dll</li>
<li>mock-assembly.dll</li>
<li>nonamespace-assembly.dll</li>
<li>notestfixtures-assembly.dll</li>
<li>nunit.core.dll</li>
<li>nunit.core.extensions.dll</li>
<li>nunit.core.interfaces.dll</li>
<li>nunit.core.tests.dll</li>
<li>nunit.exe</li>
<li>nunit.exe.config</li>
<li>nunit.extensions.tests.dll</li>
<li>nunit.fixtures.dll</li>
<li>nunit.fixtures.tests.dll</li>
<li>nunit.framework.dll</li>
<li>nunit.framework.extensions.dll</li>
<li>nunit.framework.tests.dll</li>
<li>nunit.framework.xml</li>
<li>nunit.mocks.dll</li>
<li>nunit.mocks.tests.dll</li>
<li>nunit.uikit.dll</li>
<li>nunit.uikit.tests.dll</li>
<li>nunit.util.dll</li>
<li>nunit.util.tests.dll</li>
<li>nunit-console.exe</li>
<li>nunit-console.exe.config</li>
<li>nunit-console.tests.dll</li>
<li>nunit-console-runner.dll</li>
<li>nunit-console-x86.exe</li>
<li>nunit-console-x86.exe.config</li>
<li>NUnitFitTests.html</li>
<li>nunit-gui.tests.dll</li>
<li>nunit-gui-runner.dll</li>
<li>NUnitTests.config</li>
<li>NUnitTests.nunit</li>
<li>nunit-x86.exe</li>
<li>nunit-x86.exe.config</li>
<li>runFile.exe</li>
<li>runFile.exe.config</li>
<li>success.jpg</li>
<li>test-assembly.dll</li>
<li>test-utilities.dll</li>
<li>timing-tests.dll</li>
</ul>
http://stackoverflow.com/questions/1882514/running-nunit-tests-in-a-c-console-app1Running NUnit Tests In a C# Console AppJosh Wright2009-12-10T17:14:41Z2009-12-10T17:47:30Z
<p>I need to run NUnit tests programmatically in a console app. Using NUnit's nunit-console.exe is not an option. My current code is:</p>
<pre><code>var testRunner = new SimpleTestRunner();
var package = new TestPackage("MyTests.dll", new List<string> { ("c:\MyTests\MyTests.dll" });
testRunner.Load(package);
</code></pre>
<p>When I call Load, NUnit looks for the dll in the <strong>current process's</strong> directory. So I get a FileNotFoundException for something like "c:\MyTestRunner\bin\debug\MyTests.dll".</p>
<p>How can I force it to look for the dll in a different directory?</p>
http://stackoverflow.com/questions/782780/database-for-importing-nunit-results5Database for Importing NUnit results?McWafflestix2009-04-23T17:32:23Z2009-12-10T16:56:39Z
<p>I have a large set of NUnit tests; I need to import the results from a given run into a database, then characterize the set of results and present them to the users (email for test failures, web presentation for examining results). I need to be tracking multiple runs over time, as well (for reporting failure rates over time, etc.).</p>
<p>The XML will be the XML generated by nunit-console. I would like to import the XML with a minimum of fuss into some database that can then be used to persist and present results. We will have a number of custom categories that we will need to be able to sort across, as well.</p>
<p>Does anyone know of a database schema that can handle importing this type of data that can be customized to our individual needs? This type of problem seems like it should be common, and so a common solution should exist for it, but I can't seem to find one. If anyone has implemented such a solution before, advice would be appreciated as well.</p>
http://stackoverflow.com/questions/1879621/how-do-i-get-resharper-to-ignore-certain-categories-when-running-all-tests1How do I get ReSharper to ignore certain categories when running all tests?Tomas2009-12-10T08:56:28Z2009-12-10T09:49:39Z
<p>I've got about 650 NUnit tests in my current solution in VS2008, but 40 of these are categorized either as "LongRunning" or "Integration". I do not want these to run every time I've done a change and run my test-suite (only when I specifically ask for it, and on the CI at set times).</p>
<p>Setting this up with TestDriven.Net is a cinch:
Tools -> Options -> TestDriven.Net -> Exclude tests in categories</p>
<p>I would like to use the nice UI that comes with ReSharper, though. I've not found any way of setting up ReSharper not to run certain categories. </p>
<p>Has anyone done this? Can it be done?</p>
http://stackoverflow.com/questions/1872978/dettaching-nunit-from-vs-debug-mode-takes-too-long1Dettaching Nunit from VS debug mode takes too longdemokritos2009-12-09T10:25:59Z2009-12-09T15:39:58Z
<p>I am using VS2008 and Nunit. My application uses Spring.NET Framework for dependency injection. I attached Nunit to VS to debug. Loading Nunit takes time and even worse after the test fails/success, I stop it. deattaching duration is more than 2 minutes.
I tried to restart everything, clear the cache on "\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files", but did not work. Any ideas?</p>
http://stackoverflow.com/questions/1870654/installing-asp-mvc-2-beta-nunit-project-templates-untrusted-component-error0installing asp.mvc 2 beta nunit project templates untrusted component error.John Nolan2009-12-08T23:38:01Z2009-12-08T23:38:01Z
<p>I've been trying to get nunit 2.5 to work with mvc 2 (VS2008) after following some <a href="http://www.dalsoft.co.uk/blog/index.php/2009/11/17/nunit-templates-for-asp-net-mvc-2-0-preview-2/" rel="nofollow">guides</a> and updating registries. I though I was done. I can select nunit when choosing my testing frame work but there is no test project created. When I create a new mvcapplication.nunit.tests template it fails with the error.</p>
<blockquote>
<p>Error: this template attempted to load an untrusted component 'Microsoft.VisualStudio.Web.Extensions', Version 9.0.0.0 Culture=neutral, PublicKeyToken=31bf3856ad364e35'</p>
</blockquote>
<p>I'm a little lost as to where to find the component and how to make it trusted. </p>
http://stackoverflow.com/questions/1866502/nunit-not-releasing-a-dll-used-in-a-test-cant-delete-in-teardown0Nunit not releasing a DLL used in a test / can't delete in teardownPaul Smith2009-12-08T11:57:11Z2009-12-08T15:18:59Z
<p>I have an application which has to interface with an unmanaged, and frankly buggy, DLL.</p>
<p>I've compensated for this by making my application check for all sorts of error conditions on running the DLL, things like timing out in case the DLL has gone into an infinite loop.</p>
<p>I'm trying to test that handling in my application, and so I've deliberately coded a DLL which goes into an infinite loop on purpose.</p>
<p>In my unit test, I want to rename the original DLL, copy in my 'broken' DLL, run the test, see the timeout code work, then remove the broken DLL and replace the original DLL.</p>
<p>However, in my TearDown method I can't delete the DLL, getting an UnauthorizedAccessException. I presume this is because nUnit still has the DLL 'open' in some way.</p>
<p>How can I make nUnit release the DLL?</p>
http://stackoverflow.com/questions/1805981/database-free-nunit-tests1Database free NUnit testsSonOfOmer2009-11-26T22:38:52Z2009-12-08T12:03:57Z
<p>How can I test my code (TDD) for standard CRUD operations without having a database. Is it possible to achieve such level of isolation so that my code is database independent. </p>
<p>Thanks a lot guys.</p>
http://stackoverflow.com/questions/939287/interopservices-comexception-when-running-watin-tests0InteropServices.COMException when running WatiN testsjoakimsunden2009-06-02T12:42:39Z2009-12-04T15:17:55Z
<p>Hi all,
When I run WatiN tests on our build server they all throw this InteropServices.COMException:</p>
<p>MyTestClassName.MyTestMethodName:
System.Runtime.InteropServices.COMException : Creating an instance of the COM component with CLSID {0002DF01-0000-0000-C000-000000000046} from the IClassFactory failed due to the following error: 80004005.</p>
<p>I get the same result wether I run them through TeamCity or I run them manually on the server as an administrator using NUnit GUI (2.5).</p>
<p>This is some sample code:</p>
<p>[TestFixture]
public class MyTestClassName
{
private string pageUrl;</p>
<pre><code>[TestFixtureSetUp]
public void TestFixtureSetUp()
{
pageUrl = ConfigurationManager.AppSettings["SiteURL"] + "/Pages/MyPage.aspx";
Settings.MakeNewIeInstanceVisible = false;
}
[Test]
public void MyTestMethodName()
{
using (var ie = new IE(pageUrl))
{
ie.SelectList(new Regex(@"^*DropDownList1*$")).Option("TheOption").Select();
ie.SelectList(new Regex(@"^*DropDownList2*$")).Option("AnOption").Select();
ie.SelectList(new Regex(@"^*DropDownList3*$")).Option("OtherOption").Select();
}
}
}
</code></pre>
<p>Any ideas what it can be?</p>
<p>/Joakim</p>
http://stackoverflow.com/questions/1839017/how-to-unit-test-file-permissions-in-nunit1How to unit test file permissions in NUnit ?Prashant2009-12-03T10:23:47Z2009-12-03T18:36:13Z
<p>I'm trying to unit test file read operations. In this scenario I also need make sure that, if a particular user don't have read access he should get an exception...</p>
<p>But somehow I'm unable to get it working, can anyone suggest something?</p>
<p>PS: I'm using <strong>Rhino mock and NUnit</strong></p>
http://stackoverflow.com/questions/1841615/how-to-assign-a-test-file-in-resharper0how to assign a test file in resharper?mrblah2009-12-03T17:42:07Z2009-12-03T17:58:03Z
<p>how to assign a test file in resharper?</p>
<p>whenever I select 'run tests' it says no test file found.</p>
<p>I created a test project, how do I link it?</p>
http://stackoverflow.com/questions/1837933/how-can-i-assert-that-a-particular-method-was-called-using-nunit0How can i assert that a particular method was called using nunitUmair Ahmed2009-12-03T05:55:44Z2009-12-03T06:22:38Z
<p>How can i test that a particular method was called with the right parameters as a result of a test? I am using nunit. </p>
<p>The method doesn't return anything. it just writes on a file. I am using a moq object for System.IO.File. So I want to test that the function was called or not. </p>
http://stackoverflow.com/questions/1836192/unit-testing-integration-guidance-for-a-shopping-cart0unit testing / integration guidance for a shopping cartmrblah2009-12-02T22:09:23Z2009-12-02T22:21:11Z
<p>Need some guidance on how to go about unit testing a shopping cart (.net mvc, c#).</p>
<p>I want to use sqllite as I am using nhibernate so I can create an in-memory version of my database for integration testing.</p>
<p>So I have a Cart object:</p>
<pre><code>public class Cart
{
void Add(Item item);
void Delete(Item item);
void CalculateTotalBLah();
}
</code></pre>
<p>so the method Add might look like:</p>
<pre><code>public void Add(Item item)
{
ItemDAO item = new SomeFactory();
item.Add(item);
}
</code></pre>
<p>So there are 2 things I have to test I guess:</p>
<ol>
<li>that the in-memory representation of the Cart object adds the item to the cart.</li>
<li>the database is correctly in synch. with the in-memory object.</li>
</ol>
<p>The database test I believe is fairly straight forward.</p>
<p>How do I test #1, how do I remove the dependancy of the db operations? Does nunit do this for me somehow?</p>