0
votes
3answers
42 views
How does TDD work with Exceptions and parameter validation?
I have come to something of a crossroads. I recently wrote a 10,000 line application with no TDD (a mistake I know). I definitely ran into a very large amount of errors but now I w …
0
votes
0answers
15 views
How do I setup a functional test to authenticate openid with authlogic?
I have a functional test that is supposed to call ROTS (Ruby Openid Test Server) to act as an identity.
In my UsersControllerTest, I have the following:
test "creating a us …
0
votes
2answers
25 views
Fluent NHibernate PersistenceSpecification
Hi! I got the following error message:
System.IndexOutOfRangeException: Invalid index 9 for this SqlParameterCollection with Count=9..
And I absolutely wonder why oO?!
The data …
2
votes
5answers
83 views
Role of Unit Tests [closed]
I have been reading a lot of literature on testing lately, and I am a bit confused by the expectations of tests and the value they bring into the project. Many advocate many benef …
3
votes
2answers
40 views
How to do unit testing in Visual Studio 2005?
Hi,
Is there any support for unit testing in Visual Studio 2005? After googling for some time, I found out that we can do unit testing with Visual Studio Team System, but I do not …
6
votes
8answers
161 views
Use of Mocks in Tests
I just started using mock objects (using Java's mockito) in my tests recently. Needless to say, they simplified the set-up part of the tests, and along with Dependency Injection, …
2
votes
3answers
46 views
JUnit java.lang.OutOfMemoryError when running all tests in a package
When loading all unit tests in a package, the make task throws a java.lang.OutOfMemoryError: Java heap space error.
If I run all the tests in each subpackage, though, all tests lo …
18
votes
17answers
621 views
TDD vs. Unit testing
My company is fairly new to unit testing our code. I've been reading about TDD and unit testing for some time and am convinced of their value. I've attempted to convince our team …
0
votes
1answer
29 views
How to I control the order in which Test::Unit tests are run?
For example, when these tests are run, I want to ensure that test_fizz always runs first.
require 'test/unit'
class FooTest < Test::Unit::TestCase
def test_fizz
put …
2
votes
2answers
40 views
unit testing file parsing routines?
Hello,
I am struggling a bit with how I can unit test parsing a file... Let's say I have a file with 25 columns that could be anywhere from 20-1000 records long... How do I write …
0
votes
2answers
34 views
How to test method call order with Moq
At the moment I have:
[Test]
public void DrawDrawsAllScreensInTheReverseOrderOfTheStack() {
// Arrange.
var screenMockOne = new Mock<IScreen>();
…
4
votes
4answers
114 views
Which .net architecture should I implement for 10,000 concurrent users for web application
Hello experts,
I need to create a web application for tasks delegation, monitor and generate reports for a organization.
I am thinking about ASP.Net and MVC should be the archi …
0
votes
2answers
31 views
Easymock partially mocking (EasyMock ClassExtension), good or bad?
I have written quite a few Mock objects using EasyMock. However, often i find writing partial mocks time consuming, and it does not feel 'right'.
I'd say its a design fault as my …
2
votes
1answer
16 views
Migrating from SUnit to Phexample
Hi, I'm trying out Pharo's Phexample and I like it, but it feels clumsy to have half my unit tests in SUnit and the other half in Phexample. Does Phexample have like an import feat …
2
votes
3answers
67 views
What is the preferred unit testing tool for C development in Visual Studio?
What is the preferred unit testing tool for C development in Visual Studio?
