Test Driven Development involves writing a failing automated test to specify what is to be built. The test is then made to pass by writing code which satisfies the tested condition. Finally, the code is refactored.
570
votes
21answers
116k views
Looking for a better JavaScript unit test tool [closed]
Let's consider the state of JavaScript unit tests and testing tools.
JsUnit
We already use it for some of our js code.
Pros
can be invoked from an ant build file
launches browser to run the tests
...
474
votes
30answers
82k views
What's the proper way to test a class with private methods using JUnit?
How do I use JUnit to test a class that has internal private methods? It seems bad to change the access modifier for a method just to be able to run a test.
17
votes
3answers
10k views
Fake DbContext of Entity Framework 4.1 to Test
I'm using this tutorial to Fake my DbContext and test: http://refactorthis.wordpress.com/2011/05/31/mock-faking-dbcontext-in-entity-framework-4-1-with-a-generic-repository/
But i have to change the ...
444
votes
17answers
101k views
Best practices for unit testing Android apps [closed]
I'd like to unit test my Android application but I found that test driven development in Android is far from trivial at the moment.
Any tips, tricks, war stories for building light weight and ...
220
votes
24answers
67k views
How do you unit test private methods?
I'm building a class library that will have some public & private methods. I want to be able to unit test the private methods (mostly while developing, but also it could be useful for future ...
2
votes
2answers
198 views
Persist Data by Programming Against Interface
I have a IBankAccount interface that I will be passing to the ApplicationService. The changes made on the account objects (in the ApplicationService project) need to be persisted in the database. The ...
139
votes
30answers
10k views
TDD Anti-patterns catalogue
anti-pattern : there must be at least two key elements present to formally distinguish an actual anti-pattern from a simple bad habit, bad practice, or bad idea:
Some repeated pattern of action, ...
9
votes
3answers
2k views
Are there any good TDD tools or resources for VB6?
Yea i know i'm way behind times but what i've got here is a antique VB6 editor app which i believe that no one will be upgrading to .NET soon. It uses a couple of third party DLLs tools and as it's ...
53
votes
7answers
11k views
What do programmers mean when they say, “Code against an interface, not an object.”?
I've started the very long and arduous quest to learn and apply TDD to my workflow. I'm under the impression that TDD fits in very well with IoC principles.
After browsing some of TDD tagged ...
22
votes
5answers
9k views
How do you mock the session object collection using Moq
I am using shanselmann's MvcMockHelper class to mock up some HttpContext stuff using Moq but the issue I am having is being able to assign something to my mocked session object in my MVC controller ...
44
votes
5answers
9k views
How do I test database-related code with NUnit?
I want to write unit tests with NUnit that hit the database. I'd like to have the database in a consistent state for each test. I thought transactions would allow me to "undo" each test so I searched ...
20
votes
7answers
4k views
Python unittest: Generate multiple tests programmatically? [duplicate]
Possible Duplicate:
How to generate dynamic (parametrized) unit tests in python?
I have a function to test, under_test, and a set of expected input/output pairs:
[
(2, 332),
(234, 99213),
...
31
votes
9answers
8k views
“Web interface” to PHPUnit tests?
Is there a simple "Web interface" to running PHPUnit test suites? i.e. a PHP script that runs the test on the command line, and outputs a nicely formatted HTML result.
I develop web applications, and ...
19
votes
6answers
1k views
Looking for papers/studies on TDD effectivness
I'm looking for research papers or studies made on Unit Testing and TDD effectiveness.
Points of interest:
Does TDD reduce Development time?
Does overall development cost reduced as well?
Is the ...
37
votes
6answers
13k views
Mocking Static methods using Rhino.Mocks
Is it possible to mock a static method using Rhino.Mocks?
If Rhino does not support this, is there a pattern or something which would let me accomplish the same?
118
votes
8answers
21k views
When to use rspec let()?
I tend to use before blocks and set instance variables in them and then use them across my examples, but recently I came upon let(). According to rspec docs, it is used to
... to define a memoized ...
32
votes
14answers
3k views
When to rewrite a code base from scratch
I think back to Joel Spolsky's article about never rewriting code from scratch. To sum up his argument: The code doesn't get rusty, and while it may not look pretty after many maintenance releases, ...
23
votes
12answers
4k views
Do polymorphism or conditionals promote better design?
I recently stumbled across this entry in the google testing blog about guidelines for writing more testable code. I was in agreement with the author until this point:
Favor polymorphism over ...
31
votes
6answers
5k views
How to do TDD and unit testing in powershell?
With MS ramming powershell into all new server products, I'm starting to (reluctantly) think I need to take it seriously. Part of "taking it seriously" is TDD. Have you found good methods to unit test ...
76
votes
7answers
18k views
How to get started on TDD with Ruby on Rails?
I am familiar with the concepts (took testing classes in college), but I am not sure how to really use them yet since I never worked on a "real" TDD project.
I am about to start the development of a ...
18
votes
13answers
6k views
How to start unit testing or TDD?
I read a lot of posts the convinced me I should start writing unit test, I also started to use dependency injection (Unity) for the mater of easier mocking, but I'm still not quite sure on what stage ...
56
votes
6answers
6k views
F# development and unit testing?
I just got started with F#, which is my first functional language. I have been working quasi-exclusively with C#, and enjoy a lot how F# leads me to re-think how I write code. One aspect I find a bit ...
29
votes
1answer
12k views
Android Design Patterns
I'm working on an Android project and I would like to know any recommendations about what's a good architecture to build an android application.
I want to use dependency injection using Roboguice and ...
35
votes
4answers
9k views
test a file upload using rspec - rails
I want to test a file upload in rails, but am not sure how to do this.
Here is the controller code:
def uploadLicense
#Create the license object
@license = License.create(params[:license])
...
22
votes
6answers
2k views
Why should I practice Test Driven Development and how should I start?
Lots of people talk about writing tests for their code before they start writing their code. This practice is generally known as Test Driven Development or TDD for short. What benefits do I gain from ...
28
votes
6answers
2k views
Is it feasible to introduce Test Driven Development (TDD) in a mature project? [closed]
Say we have realized a value of TDD too late. Project is already matured, good deal of customers started using it.
Say automated testing used are mostly functional/system testing and there is a good ...
1
vote
2answers
10k views
Insert blob in oracle database with C#
I have to persist a .csv in my database, but for a more testable application I prefer don't use procedures.
Basically I just generate a file and the next instruction is put this in database.
Someone ...
0
votes
2answers
530 views
Unit Testing without Database: Linq to SQL
I have a repository implemented using LINQ to SQL. I need to do Unit Testing though I don't have a database. How can I write the UT for FreezeAllAccountsForUser method? Can you please show an example ...
67
votes
7answers
16k views
Best Practices of Test Driven Development Using C# and RhinoMocks [closed]
In order to help my team write testable code, I came up with this simple list of best practices for making our C# code base more testable. (Some of the points refer to limitations of Rhino Mocks, a ...
57
votes
35answers
6k views
How do you know what to test when writing unit tests?
Using C#, I need a class called User that has a username, password, active flag, first name, last name, full name, etc. There should be methods to Authenticate and Save. Do I just write a test for ...
78
votes
32answers
16k views
Disadvantages of Test Driven Development? [closed]
What do I lose by adopting test driven design?
List only negatives; do not list benefits written in a negative form.
57
votes
8answers
11k views
What are the primary differences between TDD and BDD?
Test Driven Development has been the rage in the .NET community for the last few years. Recently, I have heard grumblings in the ALT.NET community about BDD. What is it? What makes it different from ...
27
votes
8answers
4k views
What should I consider when choosing a mocking framework for .Net
There are lots of mocking frameworks out there for .Net some of them have been superseded by others that are better in everyway. However that still leaves many mocking frameworks that have different ...
27
votes
8answers
1k views
What do you test with your unit tests?
TDD is something that seems to be on everybody's lips these days, and I have tried some on my own but I don't think I'm getting the idea. I am getting a grip on how to write a unit test, but I don't ...
24
votes
5answers
2k views
Moving existing code to Test Driven Development
Having recently discovered this method of development, I'm finding it a rather nice methodology. So, for my first project, I have a small DLL's worth of code (in C#.NET, for what it's worth), and I ...
8
votes
6answers
1k views
Using TDD to drive out thread-safe code
What's a good way to leverage TDD to drive out thread-safe code? For example, say I have a factory method that utilizes lazy initialization to create only one instance of a class, and return it ...
8
votes
7answers
2k views
Should Private/Protected methods be under unit test?
In TDD development, the first thing you typically do is to create your interface and then begin writing your unit tests against that interface. As you progress through the TDD process you would end-up ...
3
votes
6answers
2k views
5
votes
5answers
2k views
How do I mock/fake the session object in ASP.Net Web forms?
Is there a way to mock/fake the session object in ASP.Net Web forms when creating unit tests?
I am currenclty storing user details in a session variable which is accessed by my business logic.
When ...
3
votes
2answers
1k views
How do I unit-test saving file to the disk?
I know that it's strongly recommended to run unit-tests in separation from file system, because if you do touch file system in your test, you also test file system itself. OK, that's reasonable.
My ...
3
votes
3answers
1k views
Get Stored Procedure from Data Context : Linq to SQl
I have a stored procedure named ParseXML in SQL Server. I have a repository pattern using LINQ to SQL. I need to call the stored procedure from within the repository layer. Unlike GetTable method, we ...
85
votes
17answers
4k 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 that TDD is worth ...
83
votes
17answers
4k views
How do you unit test a unit test?
I was watching Rob Connerys webcasts on the MVCStoreFront App, and I noticed he was unit testing even the most mundane things, things like:
public Decimal DiscountPrice
{
get
{
return ...
26
votes
2answers
1k views
What are the best practices for testing “different layers” in Django? [closed]
I'm NOT new to testing, but got really confused with the mess of recommendations for testing different layers in Django.
Some recommend (and they are right) to avoid Doctests in the model as they are ...
30
votes
5answers
2k views
BDD with Cucumber and rspec - when is this redundant?
A Rails/tool specific version of: How deep are your unit tests?
Right now, I currently write:
Cucumber features (integration tests) - these test against the HTML/JS that is returned by our app, but ...
36
votes
8answers
3k views
How do you unit test regular expressions?
I'm new to TDD, and I find RegExp quite a particular case. Is there any special way to unit test them, or may I just threat them as regular functions?
32
votes
4answers
3k views
When to use mocking versus faking in C# unit testing?
Can anyone come up with guidelines suggesting the ideal scenarios to choose mocking versus faking, i.e., setting up the essentials manually?
I am a bit confused with how to approach this situation.
35
votes
7answers
13k views
Test Driven Development in PHP
I am a web-developer working in PHP. I have some limited experience with using Test Driven Development in C# desktop applications. In that case we used nUnit for the unit testing framework.
I would ...
21
votes
7answers
2k views
Design By Contract and Test-Driven Development
I'm working on improving our group's development process, and I'm considering how best to implement Design By Contract with Test-Driven Development. It seems the two techniques have a lot of overlap, ...
32
votes
13answers
2k views
Should I Use TDD?
I'm the only developer in my (very small) company and I'm about to start on a medium sized ASP.NET web application for said company.
I'm trying to figure out if I should learn Test Driven ...
