0
votes
1answer
11 views
Separating rapid development from refactoring/optimization
I'm working in a team of 2 front-end developers on a web-based late-stage startup project.
The site works quite well, but there's a lot of room for improvement code-wise, as the c …
5
votes
4answers
34 views
Test-driven development with ASP.NET MVC - where to begin?
I've read a lot about Test-Driven Development (TDD) and I find the principles very compelling, based on personal experience.
At the moment I'm developing a web-site for a start-up …
0
votes
4answers
71 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
1answer
17 views
Unit Tests for JPA/Persistence in General
How/would you test super-simple methods that are built on a persistence engine. I'm going to use JPA but any persistence mechanism I'm sure has its equivelents.
For example...
@E …
1
vote
5answers
78 views
Testing things that should be the same both ways
For example the Equals method. a should equal b and b should equal a. Would you say it is OK to check this in one test case using two asserts like the following:
[Test]
public voi …
2
votes
5answers
93 views
C#: How would you unit test GetHashCode?
Testing the Equals method is pretty much straight forward (as far as I know). But how on earth do you test the GetHashCode method?
3
votes
5answers
160 views
Writing an OS for Motorola 68K processor. Can I emulate it? And can I test-drive OS development?
Next term, I'll need to write a basic operating system for Motorola 68K processor as part of a course lab material.
Is there a Linux emulator of a basic hardware setup with that …
6
votes
3answers
141 views
how to write tests without so many mocks?
I am a heavy advocate of proper Test Driven Design or Behavior Driven Design and I love writing tests. However, I keep coding myself into a corner where I need to use 3-5 mocks in …
7
votes
10answers
452 views
How to write good Unit Tests?
Can anyone suggest books or material Unit Tests? Some people consider codes without unit tests as legacy codes. Nowadays, Test Driven Development is the approach for managing big s …
2
votes
3answers
68 views
TDD in a text file import project
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 st …
3
votes
10answers
258 views
How to reduce the time spent on testing?
I just looked back through the project that nearly finished recently and found a very serious problem. I spent most of bank time on testing the code, reproducing the different situ …
3
votes
4answers
95 views
TDD with diagrams
I have an app which draws a diagram. The diagram follows a certain schema,
for e.g shape X goes within shape Y, shapes {X, Y} belong to a group P ...
The diagram can get large a …
1
vote
2answers
107 views
How should I handle eventual consistency in SimpleDB, particularly in relation to unit testing?
We're building a web app on top of the Amazon Web Services stack, and I'm loving it so far.
We're also making full use of test driven development and that is also proving to be fa …
0
votes
3answers
132 views
Is it a Test Driven Development approach ?
Hi,
Suppose the following model
public class Product {
private Integer requiredQuantity;
private Integer allowedQuantity;
// getters and setters
}
public class O …
0
votes
3answers
62 views
How do you unit test templating code?
For example, I have a piece of code that's generating a SQL*Loader control file from this template (using Python):
template = """
LOAD DATA
INFILE '%(file_path)s'
APPEND
INTO TABL …
