12
votes
6answers
800 views
Integrating Automated Web Testing Into Build Process
I'm looking for suggestions to improve the process of automating functional testing of a website. Here's what I've tried in the past.
I used to have a test project using WATIN. You effectively write …
6
votes
6answers
409 views
Why are functional tests not enough? What do unit tests offer?
I just had a conversation with my lead developer who disagreed that unit tests are all that necessary or important. In his view, functional tests with a high enough code coverage should be enough …
5
votes
7answers
322 views
What is the right balance between unit vs. functional testing in a typical web application?
Unit tests are cheaper to write and maintain, but they don't cover all scenarios. What is the right balance between them?
3
votes
3answers
173 views
How to Automate Testing of Medium Trust Code
I would like to write automated tests that run in medium trust and fail if they require full trust.
I am writing a library where some functionality is only available in full trust scenarios and I …
2
votes
7answers
108 views
Is it okay to run for loops in functional test methods?
Is it okay (conceptually) to run for loops in test methods?
I'd like to test a range of parameter values into a controller, to determine if the different inputs return the correct values.
test …
2
votes
2answers
568 views
Ruby on Rails functional testing with the RESTful Authentication plugin
I started writing functional tests for my rails app today. I use the RESTful authentication plugin. I ran into a couple confusing things I hope someone can clarify for me.
1) I wrote a quick login …
2
votes
6answers
373 views
Testing whole programs. best practices
I am currently developing a library and a set of programs using this library, in python.
Unit testing dictates that I import each module from the library, and test the classes and routines within. No …
2
votes
9answers
203 views
What kinds of unit tests pay off the most in business value?
My question assumes that folks already believe that unit tests of some sort are worthwhile and actually write them on their current projects. Let's also assume that unit tests for some parts of the …
2
votes
8answers
320 views
Do you need to do unit and integration testing if you already do functional testing?
People at my company see unit testing as a lot of extra work, that offers fewer benefits than existing functional tests. Are unit and integration tests worth it? Note a large existing codebase that …
1
vote
2answers
103 views
How to automate functional/integration tests and database rollbacks
Hello!
In contrast to my previous question, i'll try to give my requirements.
I am trying to find some framework/methodology/"thing" that would fit the following:
Ability to write an automated …
1
vote
2answers
57 views
How to manage test fixtures for end-to-end testing?
Having just set up a test framework for a new web application, I realized I missed one of the big questions: "How do I make tests independent from each other?"
Years ago I have set up some …
1
vote
4answers
153 views
WatiN test data reset/clean up
I'm wondering how people are currently resetting their data / cleaning up test remnants for their WatiN/Wartir tests?
For example, lets say there's a test to add a user into the system and the …
0
votes
0answers
8 views
How to fake out a subdomain lookup in Rails tests?
I have the following filter defined:
# application_controller.rb
class ApplicationController < ActionController::Base
before_filter :find_account
private
def find_account
…
0
votes
0answers
32 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 user" do
get …
0
votes
3answers
73 views
Automating Integration Tests: Use xUnit?
I'm looking into how best to automate integration tests (by which I mean complete use cases entirely within our application)
The questions
Correct Approach for Unit Testing Complex Interactions
…
