22
votes
12answers
484 views
TDD: Does it get in the way of good API design?
I've never written TDD code, but I've seen a decent amount of discussion about it here on SO. My biggest concern with it is that it seems like general good API design (for flexibility, ease of use, …
0
votes
4answers
71 views
Why would I unit test this controller’s action?
I have a ArticleController that displays a list of articles according to a category.
public ActionResult List(string categoryname)
{
MyStronglyTypedViewData vd = new MyStronglyTypedViewData();
…
1
vote
1answer
9 views
How to stub abstract collection with Moq?
Let's say I have this class:
public abstract class CustomerCollectionBase : Collection<Customer>{}
One of my classes under test accepts CustomerCollectionBase instance (it will be some …
1
vote
8answers
170 views
Test Driven Development - What exactly is the test?
I've been learning what TDD is, and one question that comes to mind is what exactly is the "test". For example, do you call the webservice and then build the code to make it work? or is it more unit …
1
vote
1answer
44 views
Recommend good online sample walkthrough of TDD?
I find unit testing vital.
Several times I have tried the TDD but given up on it as sitting down with a piece of paper and drawing out a few diagrams first always seem more productive. As so many …
2
votes
3answers
83 views
Test-First development tool for SQL Server 2005?
For several years I have been using a testing tool called qmTest that allows me to do test-driven database development for some Firebird databases. I write a test for a new feature (table, trigger, …
2
votes
8answers
103 views
Should I create a new test method for each assertion?
I know that this is subjective, but I'd like to follow the most common practice.
Do you normally create one test method for each class method and stuff it with multiple assertions, or do you create …
1
vote
9answers
213 views
Unit Testing: Logging and Dependency Injection
So regards logging from SO and other sites on the Internet the best response seems to be:
void DoSomething() {
Logger.Log("Doing something!");
// Code...
}
Now generally you'd avoid static …
0
votes
3answers
48 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 code is quite messy …
0
votes
3answers
68 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 TABLE %(table_name)s
…
0
votes
8answers
75 views
TDD - One test at a time or make a batch?
For unit tests should you;
Write a test. Write code to pass it. Refactor.
Or
Write all your known tests. Make one pass. Refactor.
I ask this because TDD states you stop writing code after all …
0
votes
3answers
143 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 Order {
public …
0
votes
1answer
22 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...
@Entity
public class …
0
votes
4answers
93 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 want to retrofit the …
1
vote
4answers
134 views
Test Driven Development vs Automated Theorem Proving
One thing I've come to be interested in in digital logic/architecture design is Automated Theorem Proving to verify, for example, a floating point multiplication module.
Unit tests are handy, but its …
