49
votes
17answers
2k views
What Makes a Good Unit Test?
I'm sure most of you are writing lots of automated tests and that you also have run into some common pitfalls when unit testing.
My question is do you follow any rules of conduct for writing tests …
19
votes
12answers
979 views
What is the difference between integration and unit tests?
I know the so-called textbook definition of unit tests and integration tests. What I am curious about is when it is time to write unit tests... I will write them to cover as many sets of classes as …
12
votes
8answers
1k views
What is the single best open source automation tool for functional web testing
I wanted to check out a new open source tool for automated testing of a website. I prefer multi-browser support, even multi-platform.
11
votes
7answers
603 views
Creating test data in a database
I'm aware of some of the test data generators out there, but most seem to just fill name and address style databases [feel free to correct me].
We have a large integrated and normalised application - …
10
votes
12answers
911 views
What are the pros and cons of automated Unit Tests vs automated Integration tests?
Recently we have been adding automated tests to our existing java applications.
What we have
The majority of these tests are integration tests, which may cover a stack of calls like:-
HTTP post …
10
votes
5answers
468 views
How do you make a unit test when the results vary?
I am building an application that queries a web service. The data in the database varies and changes over time. How do I build a unit test for this type of application?
The web service sends back …
8
votes
5answers
195 views
Integration Testing best practices
Our team has hundreds of integration tests that hit a database and verify results. I've got two base classes for all the integration tests, one for retrieve-only tests and one for create/update/delete …
8
votes
3answers
251 views
Whats a great way to perfom integration testing!?
Hi All,
We have written our own integration test harness where we can write a number of "operations" or tests, such as "GenerateOrders". We have a number of parameters we can use to configure the …
8
votes
5answers
990 views
Unit tests vs integration tests with Spring
I'm working on a Spring MVC project, and I have unit tests for all of the various components in the source tree.
For example, if I have a controller HomeController, which needs to have a LoginService …
7
votes
5answers
292 views
LINQ to SQL Cannot create database [Schema Permissions]
For some integration tests I want to use LINQ to SQL to drop/re-create the test database. I've had this working fine before, however in this project the database is split up into several schemas.
…
7
votes
2answers
532 views
Best practices for Eclipse Feature Integration Testing
I am developing an Eclipse feature consisting of several Eclipse plugins, using Equinox Declarative Services (DS) to wire the plugins together at runtime. I would like to add integration tests to …
7
votes
8answers
398 views
Database data needed in integration tests; created by API calls or using imported data?
This question is more or less programming language agnostic. However as I'm mostly into Java these days that's where I'll draw my examples from. I'm also thinking about the OOP case, so if you want to …
7
votes
6answers
1k views
Selenium alternatives?
Selenium seems to be the mainstream tool for browser side testing and it isn't that horrible. But are there any alternatives hiding out there, even in beta phase?
7
votes
7answers
1k views
How to configure JPA for testing in Maven
Is there a way to set up a second persistence.xml file in a Maven project such that it is used for testing instead of the normal one that is used for deployment?
I tried putting a persistence.xml …
7
votes
4answers
1k views
TDD and ADO.NET Entity Framework
I've been playing with ADO.NET Entity Framework lately, and I find that it suits my needs for a project I'm developing. I also find cool its non-invasive nature.
After generating a data model from an …
