Tagged Questions
xUnit.net is a unit testing tool for the .NET Framework.
15
votes
9answers
772 views
What do you need from a test harness?
I'm one of the people involved in the Test Anything Protocol (TAP) IETF group (if interested, feel free to join the mailing list). Many programming languages are starting to adopt TAP as their ...
12
votes
3answers
1k views
Why Fit/FitNesse?
What's the point of using Fit/FitNesse instead of xUnit-style integration tests? It has really strange and very unclear syntax in my opinion.
Is it really only to make product owners write tests? ...
8
votes
6answers
3k views
Is it idiomatic Ruby to add an assert( ) method to Ruby's Kernel class?
I'm expanding my Ruby understanding by coding an equivalent of Kent Beck's xUnit in Ruby. Python (which Kent writes in) has an assert() method in the language which is used extensively. Ruby does ...
7
votes
6answers
311 views
unit testing c# properties
I am working with a class that has lots of properties. For example;
public class Bib
{
public int PartQty { get; set; }
}
Now to unit test; I did the xUnit test something like
...
7
votes
1answer
2k views
xUnit or NUnit? What advantages and disadvantages of each other?
What are the pluses and minuses of each framework, comparing to each other?
How well they work with ASP.NET MVC?
How well they support mocking?
7
votes
7answers
269 views
Where and how can I learn software testing techniques?
I want to learn how to build “robust” software that is designed to test itself. In other words, how do I implement automated tests in my software ( using java or groovy or c++ ).
So I want to know ...
6
votes
3answers
1k views
What is the community-preferred Ruby unit testing framework?
In the Java space, JUnit is predominately used and in .NET I believe nUnit is very popular. Is a community agreed upon unit testing framework for the Ruby world?
Background: I ask because I am new ...
5
votes
2answers
528 views
How to attach message to rspec check?
In rspec: Can I attach a message to a check the same way as I would do in xUnit style test frameworks? How?
assert_equal value1, value2, "something is wrong"
4
votes
3answers
216 views
Using Moles with XUnit - wrong dll version
I'm trying to set up Moles to use in our unit testing. We are using xunit, so I am using the Xunit extension that comes with moles (Microsoft.Moles.Framework.Xunit). However, as we are running Xunit ...
4
votes
3answers
157 views
How to test functions in a private directory?
I'm using MATLAB xUnit to test some code. I'd like to be able to directly call some functions that are contained in a private directory.
Here's a simple replicable setup:
Create yourself a project ...
3
votes
2answers
88 views
Can't get Resharper 6.0 to work with xUnit.net
I have downloaded the xunit contrib for resharper but I can't get it to work. The installation instructions do not work. Does anyone else having same problem?
When I try to run the unit tests I get ...
3
votes
1answer
107 views
xUnit framework: Equivalent of [TestFixtureSetUp] of NUnit in XUnit?
What is the equivalent of [TestFixtureSetUp] of NUnit in XUnit?
We have explored and found that IUseFixture is the equivalent of [TestFixtureSetUp] but its not working as expected.
As we have ...
3
votes
1answer
318 views
Code Coverage for xunit
I am maintaining a system where there are some unit test written with xUnit.
I need to bring code coverage to 90% what would be a good way to go about it?
I have used MSTest before and it had a ...
3
votes
3answers
262 views
JUnit Test if XML Document is sorted on arbitrary column
Given an xml document like
<root>
<row>
<a>2</a>
<b>1</b>
<c>8</c>
</row>
<row>
<b>5</b>
...
2
votes
2answers
49 views
Resolving duplicate test idiom in JUnit
I have 2 cases which seem like the same problem to me, even though they're completely different situations:
1) I'm testing both the read and write of an object to the database. Because I'm cleaning ...
2
votes
0answers
110 views
Jenkins with the Measurement Plots plugin does not plot measurements
Is there anyone who was successful in getting a plot using Jenkins with the Measurement Plots plugin and a xUnit test results file with the tags?
If yes, I'd like to see a sample of a working xUnit ...
2
votes
1answer
122 views
How to run F# Silverlight Library project holding xUnit.net Contrib based unit tests?
I am unaware of any project templates for F# Silverlight 4 unit tests (I searched Online for templates through Add Project), so I am using the standard F# Silverlight Library project to hold my unit ...
2
votes
3answers
124 views
What unit testing framework will meet my requirements?
This is all i'm looking for at a high level:
The ability to run unit tests from within visual studio 2008
Compatibility with some code coverage tool
A unit testing framework with a row testing ...
2
votes
1answer
94 views
different mock objects to compare objects in unit tests
I have Equals method that I am trying to tests. this method return true if object passed to is is same as this object.
I test true condition as following.
var mocks = new MockRepository();
...
2
votes
1answer
124 views
Using xUnit.net AutoRollback and Multi Threading
I am trying to write a test case using xUnit.net and the AutoRollback attribute provided by the xunit extensions.
My test case goes like this
[Fact, AutoRollback]<br>
public void ...
2
votes
3answers
322 views
.NET unit test runner outputting FaultException.Detail
I am running some unit tests on a WCF service. The service is configured to include exception details in the fault response (with the following in my service configuration file).
<serviceDebug ...
2
votes
3answers
497 views
xUnit Assert.Throws question
I have some cases where I don't care what exception is thrown (as long as some exception is thrown). Unfortunately,
Assert.Throws<Exception>(someDelegate);
doesn't pass unless exactly an ...
2
votes
2answers
230 views
How do I skip specific tests in xUnit based on current platform
I have an assembly that I've built on Windows
I want to run the xUnit tests on mono in Linux.
However, I have found that while 400 of these tests can run (in order), that certain tests either hang ...
2
votes
3answers
293 views
Does BDD pay off?
I a bit familiar with rspec [Ruby] and specs [Scala]. Yesturday I passed a tutor for Cucumber. What I disliked about Cucumber is that additionally to describing scenarios (like you would do with spec- ...
2
votes
2answers
363 views
Run xUnit tests from TFS2010
I'm trying to work out how to run xUnit tests from TFS 2010.
I found some articles on how to achieve that with the older version ...
2
votes
1answer
49 views
Is there any reason in Junit not to create your objects at the declaration?
Is there any reason to put object creation inside of setUp() rather than at an instance variable declaration?
I've seen it done this way in books, but the effect is the same and I'm not sure if it ...
2
votes
1answer
365 views
TDD System Under Test Creation Patterns (AutoFixture)
I'm trying to use SUT Factory 'pattern' to create my SUT.
Given the SUT structure:
namespace MySut
{
public class Dep1
{
}
public class Dep2
{
}
public class Sut
{
...
2
votes
1answer
242 views
xUnit testing framework for C
I'm developing a fairly simple C project for an embedded device. I'd like to employ xUnit testing. I've settled down with the Check framework (http://check.sourceforge.net/), but it seems it doesn't ...
2
votes
2answers
153 views
What is 'Churchillian knock-off'?
I've read xUnit Test Patterns.
http://martinfowler.com/books.html
There is 'Churchillian knock-off' expression in Martin Fowler's writes like this...
If you go to junit.org, you'll see a quote from ...
2
votes
3answers
349 views
In xUnit.net, is it possible to run tests in order?
I know you generally should not depend on order for your unit tests, but in xunit is it possible to make your tests run in a certain order?
2
votes
2answers
4k views
Why am I getting a “wrong number of arguments (0 for 2)” exception in my Ruby Code?
I'm trying to polish up my Ruby by re writing Kent Beck's xUnit Python example from "Test Driven Development: By Example". I've got quite far but now I get the following error when I run which I ...
1
vote
2answers
17 views
UnitTest Project's code sync with source?
I have a Visual Studio solution named - UnitTestProject, unit test with xunit framework.
Under this solution, a project named - MainProject and MainProject_Test,
The MainProject is the "Real" Source ...
1
vote
2answers
82 views
Can these row test style unit tests be improved to follow good TDD design practices?
Can the following unittest be improved, to follow good TDD design practises (naming, using rowtests, designing the classes) in any of the .NET TDD/BDD frameworks?
Also, is there a better way in any ...
1
vote
1answer
131 views
Mockito code during @Before annoted method solution
i'm new on using Mockito framework (and Behavior/Test Driven Development) and using
to help me code some things;
I´m coding my own Java library for xml to create graphic things and
i tried first ...
1
vote
0answers
22 views
How to test DB queries when DB schema in question has lots of constraints?
Background:
moderate DB schema (some 70 tables)
with lots of foreign keys and other constraints (not null etc.) between them
a shared DB fixture for all the tests
some simple tear-down logic which ...
1
vote
3answers
311 views
Using xunit or nunit as test runner framework
I'll start with an problem. I have a little library. It goes through a list of urls in text files and create assertions depending on the url returns 200 or not.
The goal is to make a test runner like ...
1
vote
1answer
74 views
How does xUnit runner handle static methods w/static class constructor?
If I have a class with static Facts (test methods) and the class has a static constructor, is the constructor called for each Fact or only once for all Facts in a class? I guess it depends on how the ...
1
vote
1answer
135 views
Can xUnit frameworks and BDD work together?
Some of the resources I read.. refer to BDD as a response to 'Bad TDD'.
Specification of behavior vs Verification. No inappropriate intimacy between tests and implementation
Use of ...
1
vote
1answer
381 views
Launching xunit tests from ReSharper under Moles
I have got xunit tests working great; launching them from ReSharper. Now I'm trying to use moles for some test cases. I've got my [Moles] attribute on the test, with a reference to the moles xunit ...
1
vote
0answers
353 views
Jenkins xUnit Plug-in issue
I installed Jenkins server (on windows 7), plus xUnit plug-in in order to use UnitTest++ for the C++ project I work on.
I configure jobs scripts so that TestUnit++ produces reports in some directory ...
1
vote
2answers
420 views
MSBuild - trying to run xUnit (.net) tests
I'm trying to set up a C# project that'll run xUnit tests when I build, so I can use them in continuous integration. I have a regular project, a class library test project using xUnit, and my test ...
1
vote
3answers
571 views
Configuring xUnit for CUnit in Hudson CI
I want to use Hudson CI for my c-project, which also uses CUnit. However I've also come to understand that there is currently no plugin that supports CUnit. So I read on the internets that this might ...
1
vote
5answers
93 views
Should I test the Interface and All objects that implement it
Hi
Assume I have an Interface A and a class B that implements A. Within my test class I create a dummy class that implements A and I "test the Interface methods" now my question is should I test the ...
1
vote
4answers
173 views
Confused about this unit test!
So basically, I have an abstract class which has a unique, incremental ID - Primitive. When a Primitive (or more precisely, an inheritor of Primitive) is instantiated, the ID is incremented - up to ...
1
vote
1answer
172 views
Exception when deleting message from Azure queue?
I'm dipping my toes into Windows Azure, and I'm running into something that has to be simple, but I just can't see it.
I have this small test to play with Azure queues:
public void ...
1
vote
1answer
34 views
What testing framework for c# is the most similar to Junit 4?
Mainly from feature-set standing point, as well as similarity of method names/working logic/verbosity ?
1
vote
2answers
938 views
How to test FormsAuthentication in a asp.net mvc 2.0 app with
Ive made a interface with the following methods:
Public Interface IAuthenticationService
Sub SetAuthentication(ByVal username As String)
Sub Logout()
Function IsLoggedIn() As Boolean
End ...
1
vote
2answers
406 views
How to add times in XSLT?
I have some output from 3rd party software:
Sample XML from the software:
<testsuite name="XYZ">
<testcase name="ABC" status="0" time="12.001">Some stuff</testcase>
...
1
vote
3answers
73 views
How to create a state-based test for a method that calls other methods within the same class?
I have the following code (which I've dumbed down for the question):
public void HandleModeInit(int appMode){
switch(appMode){
Case 1:
DoThis();
...
1
vote
2answers
125 views
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 ...