1
vote
2answers
36 views
How to add times in XSLT?
Hello, 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 …
1
vote
3answers
74 views
Testing MVC Controller Action HttpAcceptAttribute Verbs
What is the best way to unit test the controller action HttpAcceptAttribute verbs?
So far I have the following but it's so ugly even a mother couldn't love it and not very flexibl …
0
votes
2answers
57 views
How to make MATLAB xUnit work on MATLAB R2008b (7.7)?
I copied the matlab_xunit folder to C:\Program Files, and included it (and its subfolders) on the MATLAB path. Now MATLAB recognizes new commands such as
runtests
But this comma …
1
vote
1answer
46 views
How (strategy) to unit test properties (get/set) in BDD style?
I have a class (of many) that have properties. Some have logic in them and some don't. Assuming I want to test these properties, how do I go about doing that?
Recently, I've bee …
1
vote
3answers
38 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:
DoTh …
2
votes
2answers
576 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 whe …
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 …
1
vote
3answers
87 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 as …
0
votes
5answers
200 views
Implementing xunit in a new programming language
Some of us still "live" in a programming environment where unit testing has not yet been embraced. To get started, the obvious first step would be to try to implement a decent fram …
2
votes
4answers
681 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 extens …
0
votes
3answers
71 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?
0
votes
1answer
85 views
Can I create a wrapper around NUnit, MbUnit, xUnit or other testing framework?
How can I create a wrapper around a testing framework? We still doesn't know which testing framework are going to use, but I need to start writing unit tests. With this question I …
1
vote
3answers
451 views
Problem disposing of socket / finalising twice?
I'm working with some code (not mine I hasten to add, I don't trust this much at all) for a class which opens a socket, makes requests and listens for responses, which is throwing …
15
votes
8answers
416 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 …
