For issues relating creating and running unit tests using NUnit, version 2.5.
0
votes
0answers
17 views
In NUnit, how can I indicate that a 'DataPoint' is applicable to just one Theory?
In NUnit, is there any way to indicate that a Datapoint(s)Attribute should be applied only to one theory only, if there is more than one theory in the same TestFixture class?
Reason I ask is that I ...
0
votes
0answers
30 views
How to know which files have changed with FSTrigger plugin in Jenkins
I am using the NUnit reports created by other CI system (not jenkins) for this I monitor a folder to see when the Nunit reports are created, the job triggered when the new files are created but I ...
-1
votes
2answers
98 views
ERROR: Caught exception [ERROR: Unsupported command [addSelection |]
I am using selenium web driver with C# and on trying to select an item on the available list I am receiving an error as ERROR: Caught exception [ERROR: Unsupported command [addSelection | . Can ...
0
votes
0answers
48 views
visual nunit tool will not pick test dlls present in other drive
I am using Visual studio 2010 and recently I have installed Visual Nunit tool to run Nunit tests via UI.
My source code exists in G: drive.
My output is generated in V: drive
When I build solution, ...
0
votes
0answers
137 views
Selenium webdriver with TeamCity CIS in vs2010
Our QA team have migrated Selenium scripts in VS2010. I would like to know how to proceed with the selenium webdriver and teamcity continuation build.
My purpose is when team city release the build ...
0
votes
0answers
99 views
TeamCity and NUnit Test Runner using include and exclude
I'll try to explain this as best I can. I know that I can use the nUnit Test Runner to pass in an include and exclude value(s); The problem with it is that using the build configuration I can only ...
0
votes
0answers
119 views
How to use SetUpFixture attribute in a class with a Generic type
I'm trying to create some automation test using Selenium WebDriver and the main idea is to be able to run all the test in three browsers at the same time : Chrome,IE and Firefox.
I followed the ...
2
votes
2answers
145 views
Why doesn't this regex pattern match this text? (Simple regex just includes escaped text with wildcard in the middle)
Apologies if this is a duplicate; I promise I did search.
I'm working on a C# integration testing project using NUnit in Visual Studio 2010 Professional, running the tests with Resharper v6.1. ...
0
votes
1answer
635 views
Integrating NUnitTesting GUI to Visual studio 2012 and debugging Test Cases
I am using NUnit 2.5 as my unit testing framework for visual studio 2012 professional.
I configured NUnit.exe to open NUnit GUI for testing my dlls.
I am testing a dll called "BookStore.dll" which i ...
0
votes
1answer
136 views
How to run test method by the testfixture parameter?
I have a test class and a class like below.
public class Foo
{
private IDbOjbect _db;
public Foo(string conn)
{
_db = new DbOjbect(conn);
}
internal Foo(IDbObject db)
...
0
votes
0answers
88 views
Example of XPath in HtmlUnit testing in .NET
<Test()> _
Public Sub CheckInput()
Dim input As HtmlButtonInput = page.getByXPath("/html/body/form/table/tr/td/input")
Console.WriteLine(input.getId())
End Sub
This is a test I ran and ...
1
vote
2answers
148 views
NUnit not reading the configuration file
I have written a NUnit tests for .net application. When I run the NUnit, it does not read the connection string values from the config file. Tried many solutions with out success, like
1. adding ...
0
votes
3answers
279 views
VS 2010 and Nunit testing framework setup
I am working on an Asp.net mvc3 project (.NET 4). And required to integrate a testing tool. I tried to setup up the Nunit testing framework in my solution but it seems that there is a problem setting ...
0
votes
0answers
147 views
How do i build my selenium scripts and create a report from Nunit?
Hello fellow selenium lovers,
I have my c# scripts up and running to test the application. Now i want to integrate and build for integration and create a report after test is ran successfully or not. ...
0
votes
2answers
336 views
Windows UI Automation API not finding child elements when run on server
I'm using the Microsoft UI Automation API from within NUnit 2.5.10 tests to perform automated UI testing for a WPF application.
There some cases where running the tests on my development machine is ...
0
votes
0answers
46 views
Fail a testcase when event occurs in nunit
I am using 2.5 version of nunit. I have written a code to raise an event
when a particular process starts. The event indicates that the particular
test case has to fail. But after the event handler ...
0
votes
4answers
565 views
Data Driven Testing With NUnit
need advice on data driven test automation.
I am doing test automation using C# ann Nunits for a web application which is developed using MVC. We are using Selenium web drivers for this.
As part of ...
2
votes
3answers
742 views
Write NUnit Test case for a method which prompts a message box
I have a method with the following structure:
bool myMethod(some arguments)
{
//Show User Dialog
}
The user dialog is shown which has 4 buttons, "Yes", "Yes To All", "No" , "No To All".
When ...
1
vote
2answers
583 views
Win32Exception: Error Creating Window Handle (big number of nested controls)
First of all, sorry for my english since it's not my native language.
Problem was happened in my .NET Windows Forms Application and reproduced only on Virtaul PC Windows 7 (x64) for some reasons.
...
2
votes
1answer
328 views
NUnit. Passing parameters into teardown method
I'm using NUnit. I have my test method defined likeso:
[Test]
[TestCase("Fred", "Bloggs")]
[TestCase("Joe", "Smith")]
public void MyUnitTest(string firstName, string lastName)
{
...
}
After a ...
0
votes
2answers
137 views
Execute Multiple test DLLs with Nunit
I have multiple Nunit test DLL's like a_test.dll, b_test.dll, c_test.dll.
Whenever I need to execute the these test projects, I need to load them individually in the Nunit application and execute ...
2
votes
2answers
432 views
Initialize log4Net as early as possible with NUnit
I'm wondering what is the best way to initialize log4Net in a NUnit project. Of course I want to call the init code (ie. XmlConfigurator.Configure()) as soon as I can to get as many early log output ...
2
votes
1answer
358 views
Trouble configuring TeamCity and dotCover
Im trying to configure TeamCity 6.5 with inbuilt NUNIT and bundled dotCover. For reasons I do not understand dotCover Merge command fails, along with all subsequent commands with some non-zero exit ...
5
votes
4answers
361 views
Catching asserts in NUnit
I'd like to log some contextual information when tests fail (like capturing screenshots). Is there any extensibility point in NUnit framework where i can do it? Ideally it would be:
[TearDown]
...
6
votes
3answers
940 views
My test fail when run together, but pass individually
Quick question for you... When I write a test in Visual Studio, I check that it works by saving, building and then running the test it in Nunit (right click on the test then run).
The test works ...
0
votes
1answer
2k views
how to launch command prompt as administrator using batch file
I am having a NUnit used automation framework. I was working on Windows XP previously and made a batch file to execute the complete Automation test using that batch file. But now I am using Windows 7 ...
0
votes
3answers
554 views
WatiN - Failure: System.UriFormatException : Invalid URI: The hostname could not be parsed
Ok so I have been experimenting with Unit Testing. I am using Nunit and WatiN to do my testing and decided to try to implement the WatiN Test Recorder. I don't know if anyone is familiar with it, but ...
0
votes
1answer
110 views
delegate methods for unit tests
I'm thinking, while writing some unit tests for an application to build intuitive methods into my classes that renders differently depending on which "class" called the method.
So, I'm in an NUnit ...
0
votes
3answers
82 views
Nunit testing issue
Ok, I have an Nunit test class setup that runs though a method, lets all it CalcBalance(). Within CalcBalance() we have another method that will save things to a database. I do not want to deal with ...
2
votes
2answers
166 views
NUnit CollectionConstraints exceptions
I'm using NUnit 2.5.6.10205 in a .NET 3.5 C# app. I'm using NUnit's Collection Constraint to assert if an IEnumerable is sorted by a paramter.
It doesn't seem to be working for me, as I'm getting an ...
0
votes
1answer
175 views
SQLite allows a primary when autoincrement is specified
I am using SQLite to test my DAO project.
The reason is it provides a quick way to tell me if the model can perform a CRUD operation.
So there is an NUNIT project that tests each DAO and indicates ...
0
votes
1answer
42 views
Show only specific Tests or TestFixtures in NUNIT via a configuration file or another way
I have a bunch of NUNIT tests in several TestFixtures. Currently, I just display all the tests for everyone. Is there a way to hide some tests and/or test fixtures. I have various "customers" and ...
1
vote
2answers
269 views
How do I isolate a singleton in my unit tests?
I have a static class in my program. In the static constructor I create instance of service. The proxy of service is a singleton.
I must write unit tests for this class, and certainly I want isolate ...
4
votes
1answer
322 views
How Can I get NUnit's ExpectedException attribute to detect an exception's base class?
Using NUnit 2.5.10, I am testing some code that references a library containing a base exception type. TIBCO.EMS.NamingException, from which other exception types derive, specifically ...
4
votes
2answers
762 views
NUnit extension
Hi All i have a question regarding NUnit Extension (2.5.10).
What i am trying to do is write some additional test info to the
database. For that i have created NUnit extension using Event
...
2
votes
1answer
260 views
What is difference between EqualTo() and EquivalentTo() in NUnit?
When I have a Dictionary<string, int> actual and then create a completely new Dictionary<string, int> expected with the same values as actual.
Calling Assert.That(actual, ...
0
votes
1answer
309 views
Nunit 2.5.10 - Not being able to compare two objects
I've been looking for a way to check two objects, but I find Equals, Assert,AreEqual and some other ones and I do not know which one I should use. Furthermore, I've been making my tests with the new ...
2
votes
2answers
302 views
TFS2010 build with unit test
I am trying to convert a build system setup with TeamCity and Nant scripts to use TFS2010 (We bought the license and might just as well make use of it) After some work I get the web project to build ...
17
votes
2answers
4k views
nunit not working in windows 7 at all
I am new to unit testing and this ism y first time trying NUnit.
My environment is windows 7 professional 64 bit, visual studio 2010 and i am working on a windows application in C#. I just wrote a ...
0
votes
1answer
138 views
mystyfing unit tests failing
We are using NHIbernate, .net and sql server2005. What is mystyfing most is that using the same database, the same unit tests, my friends are not having any kind of messages and all their tests are ...
0
votes
1answer
262 views
How to verify that TestDriven.net uses NUnit 2.5.vNext?
I go to VS2010, tools, options, TestDriven.Net, Test Runners.
I observe NUnit 2.5 with version 2.5.0 thru 2.5.65535.65535 to be launched.
How do I configure TestDriven.Net to use NUnit 2.5.10, or ...
1
vote
1answer
1k views
ASP.NET MVC Unit Testing with Repository Pattern
I am trying to get my feet wet with asp.net mvc3 and unit testing.
I have created a model which uses the repository pattern. Here's the interface:
public interface IExtensionRepository
{
...
2
votes
1answer
181 views
Testing if a collection contains objects based on a particular property
I'm using NUnit 2.5.7. I want to test whether a collection of custom objects of a particular class contains certain objects, based on one of the class's properties.
e.g. a contrived example...
...
1
vote
2answers
591 views
NUnit 2.5.8 requries NUnit.Framework 2.5.5 to run. How can it be?! And what for?
I'm getting a dumb exception on nunit.exe launch attempt:
System.IO.FileNotFoundException: Could not load file or assembly 'nunit.framework, Version=2.5.5.10112, Culture=neutral, ...
1
vote
1answer
604 views
NUnit, Neither Assert.Throws nor [ExpectedException] Catch Thrown Exception
Before I start, I want to make it clear that I've already checked for solutions in both this question and this question.
The Method to Test
public static DataSet ExecuteDataSet(this SqlConnection ...
2
votes
3answers
151 views
developing a unit testing API
HI,
I have been assigned a task of exploring unit testing using tools available in the market. My question is how do i write an API that would help in writing unit test cases.
Example i can use nunit ...
1
vote
1answer
395 views
RuntimeBinderException thrown from nUnit's Assert.That for dynamic objects
I have an nUnit test case that asserts the type set in the new ViewBag property of an MVC Controller.
So the action body has
using (IRepository repository = _repositoryProvider.GetRepository())
{
...
1
vote
0answers
40 views
Configuring Mapping of objects and its properties in XML
I am writing Automation test script using Nunit and Selenium,
After completing my test case I need to verify the results by calling one service and verifing its attrobutes with source system , Source ...
1
vote
1answer
539 views
Not hitting breakpoints attached to NUnit
HI,
I'm using the latest NUnit, 2.5.9, on Windows 7 64-bit, Visual Studio 2010 Premium, and the projects are .Net 3.5.
The problem is that I attach to NUnit (there is NOT an nunit-agent appearing), ...
0
votes
2answers
738 views
Getting SetUp method failed. System.Runtime.InteropServices.COMException
I am running tests that needs to open a new instance of IE everytime for new test.
My first test passes and closes the IE at the end and then my next test has to open a new IE but It failing at that ...
