acceptance-testing

Has anyone found a way to run C# Selenium RC tests in parallel?

Has anyone found a way to run Selenium RC / Selenium Grid tests, written in C# in parallel? I've currently got a sizable test suite written using Selenium RC's C# driver. Running the entire test suite takes a little over an hour to complete. I normally don't have to run the entire suite so it hasn't been a concern up to now, but it's so...

Easy acceptance testing with specification

I look for a tool/framework to make automatic acceptance-testing. The interface to create new tests should be so easy, that a non-programmer (customer, boss) will be able to add specifications for which will be tested automatically. It should be some way to execute the tests from command-line, to include a run of the tests in automatic ...

How to write acceptance tests

Hi, How would you go about introducing acceptance tests into a team using the .NET framework? What tools are available for this purpose? Thanks! ...

Automated (Web) Application Acceptance Testing Resources

What are some decent guides / books / blogs that deal with application acceptance testing? I'm particularly interested in web automation. I'm familiar with some of the frameworks and I'm more interested in the perceptions of "best practices" on the subject as well as how to maintain sizable amounts of these tests. ...

How do I add fitnesse pages to version-control?

What is the recommended practice? Should I add the my sub-folder under the fitnesse folder to version control? Context: working on a single developer rails pet project. I've my rails project under version-control (Subversion) however my fitnesse wiki pages lie under the fitnesse program folder. Fitnesse seems to have its own versio...

Do you concentrate more on unit, integration or acceptance tests?

Most gigs I end up at either have little or no unit tests. Typically what are described as the unit tests are actually integration tests and will be rarely run from the developers machine. I usually start my evangelism by preaching the difference between the two and try to get people to write very focussed unit tests and leave the inte...

Can you review my Perl rewrite of Cucumber?

There is a team working on acceptance testing X11 GUI application in our company, and they created a monstrous acceptance testing framework that drives the GUI as well as running scenarios. The framework is written using Perl 5, and scenario files look more like very complex Perl programs (thousands of lines long with procedural-program...

Are BDD tests acceptance tests?

Or, if you have BDD tests, do you need something like Fitnesse? ...

How detailed should a customer acceptance test be?

Here is a test description, testing the "Create New Widget" use-case. Confirm that you can enter a new widget into the system. Here is another test description, testing the "Create New Widget" use-case. Bring up the application. Create a new widget by the name of "A-008", with the description being "Test Widget for Acceptance Te...

Are unit tests and acceptance tests enough?

If I have unit tests for each class and/or member function and acceptance tests for every user story do I have enough tests to ensure the project functions as expected? For instance if I have unit tests and acceptance tests for a feature do I still need integration tests or should the unit and acceptance tests cover the same ground? Is ...

How to test functionally that something should happen at given time?

I'm writing a web application which contains a kind of schedule. After a certain action, the schedule is updated and when the user visit the page that day something happens. Any ideas how to write a functional (acceptance) test for that kind of functionality? I'm writing these end-to-end tests using Selenium. The only idea I have is t...

looking for a C# or .Net based Acceptance testing framework - alternative to Aqua or Robot

We have extensive system tests written in the Python based Robot framework, and some in the Java based Aqua framework. Robot is flexible and has good logging, but is quite cumbersome, and Aqua also didn't raise much enthusiasm with the people who used it here. the product tested is mostly C#/.Net based, and we are looking for a solid ext...

Microsoft Expression Studio - Web / Superpreview with ASP.NET

Is there anyway to test an ASP.NET webpage fully with Expression Studio or is it only possible to see a static view of the page and no way to interact with any of the elements on the page? ...

Automated UI testing a large c# forms app

I am working on a fairly complicated project. We have a c# forms app that has several layers of business logic, communicating with a c++ hardware management layer via a socket interface. We have unit test coverage of the c++ side, and the business logic, but acceptance testing of the forms app is a whole new world for me, as we have do...

Acceptance Tests and Code Coverage

What is the best way to measure coverage for your Acceptance Tests?? How do you define how much your acceptance tests cover and when they are enough?? ...

Watij Replacement

Does anyone know of a good replacement to Watij which will allow automated tests to be written in Java? It looks like the Watij library isn't being developed anymore. ...

Web application: Acceptance testing: Initial state for a test and test isolation?

Greetings, I am currently exploring some extreme programming and try to stick as much to it as possible. This means, I will need to turn my (by now, unexpectedly thick stack of) user stories into acceptance tests once I begin an iteration (after planning the release, of course). I am not entirely sure about the implementation language...

Flex automated acceptance testing tools

I am looking for recommendations for tools for automated testing of a web application with some flex components. To provide some background we have a web application that was entirely developed in AJAX+HTML and we were somewhat successful in using Selenium for testing that application end to end. We recently added some flex components i...

Rails Rest API External Testing

I am building a REST Web Service layer on top of a Rails app that will be used by an Iphone application. The response format is XML. I would like to build some acceptance tests that should be external to the rails stack (and should test everything, including the http server). The test scenarios are quite complex, involving the process ...

How do you do TDD in Xcode?

Are there any good unit testing and acceptance testing frameworks that can be applied to XCode projects? I'm accustomed to doing TDD in Ruby and Python but am new to Objective-C and XCode. ...