Tagged Questions
The acceptance-testing tag has no wiki summary.
17
votes
5answers
3k views
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 ...
11
votes
8answers
2k views
9
votes
4answers
595 views
Should BDD scenarios include actual test data, or just describe it?
We've come to a point where we've realised that there are two options for specifying test data when defining a typical CRUD scenario:
Option 1: Describe the data to use, and let the implementation ...
8
votes
6answers
1k views
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" ...
8
votes
3answers
3k views
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 ...
7
votes
3answers
122 views
What is the most maintained newest framework in .NET for writing acceptance tests? [closed]
I am practicing TDD for some time now, I want to advance my skills and start doing ATDD,
I read about frameworks for ruby and java but didn't hear much about .NET
What is the most maintained newest ...
7
votes
3answers
271 views
Must an actor of a user story be a human being?
User stories are traditionally written as expression "As a [User Type] I want [feature] so that [some benefit]". In the books and online resources [User Type] typically correspond to a role of a human ...
7
votes
5answers
463 views
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 ...
6
votes
1answer
202 views
TeamCity: Managing deployment dependencies for acceptance tests?
I'm trying to configure a set of build configurations in TeamCity 6 and am trying to model a specific requirement in the cleanest possible manner way enabled by TeamCity.
I have a set of acceptance ...
6
votes
8answers
2k views
Difference between acceptance test and functional test?
What is the real difference between acceptance tests and functional tests?
What are the highlights or aims of each? Everywhere I read they are ambiguously similar.
6
votes
1answer
1k views
Has anyone used Robotium or Calculon for testing Android apps?
Has anyone used Robotium or Calculon for testing Android apps? Are they useful? Any recommendations on which is better?
6
votes
11answers
698 views
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 ...
5
votes
1answer
193 views
Which tools are used to write acceptance tests for Python web applications (django)?
I've found only two:
http://splinter.cobrateam.info/
http://lettuce.it/index.html
I'd like to know you practices and experiences with these (or other) tools.
5
votes
3answers
441 views
Unit Tests vs. Acceptance Tests
Are you for one or the other? Or both?
My understanding is unit tests:
validate the system from the developer's point of view
help developers practice TDD
keep code modular
assist in detecting ...
5
votes
3answers
2k views
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 ...
4
votes
2answers
120 views
How to structure acceptance tests and test plans?
I'm considering two different approaches of how to structure my acceptance tests. We have a Silverlight project that calls into a service layer (I own both sides). Because of the way Silverlight is, ...
4
votes
1answer
802 views
How reliable is HtmlUnitDriver?
Obviously, the answer to the question depends on a number of environmental factors.
In general, I'm wondering what people's experiences are with HtmlUnitDriver as a reliable tool that can be ...
4
votes
1answer
1k views
Integration vs acceptance test … what is Cucumber / Steak?
For integration tests of my Rails web app I use Steak (something like Cucumber). The specs of Steak are in a folder named spec/acceptance. Are Steak/Cucumber now for integration or acceptance testing? ...
4
votes
2answers
515 views
How to choose between different test types with SpecFlow, Cucumber or other BDD acceptance test framework?
I am looking at SpecFlow examples, and it's MVC sample contains several alternatives for testing:
Acceptance tests based on validating results generated by controllers;
Integration tests using ...
4
votes
3answers
403 views
What are the benefits of automating acceptance testing?
Recently I read some articles about some doubts about benefits of acceptance testing, because it is quite costly compared to what it brings. To form my own opinion, I would like to gather as much ...
4
votes
4answers
1k views
Using JUnit as an acceptance test framework
OK, so I work for a company who has openly adopted agile practices for development in recent years. Our unit tests and code quality are improving. One area we still are working on is to find what ...
4
votes
4answers
919 views
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 ...
4
votes
2answers
2k views
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 ...
3
votes
1answer
69 views
Is there any difference between specflow's .msi installer and its nuget package?
On specflow's own instalation guide it says that the only way to install it is using the .msi installer and most of the tutorials I've read on the subject tell me to download and install said file but ...
3
votes
1answer
339 views
Is Geb(automation testing framework) a good acceptance testing framework?
Is Geb(automation testing framework) a good acceptance testing framework?
3
votes
0answers
76 views
What techniques are programmers using to write maintainable integration/functional/acceptance tests?
Integration/Functional/Acceptance tests are inherently difficult to maintain for a myriad of reasons: they take a long time to run, are hard to keep green consistently, can fail seemingly randomly, ...
3
votes
2answers
303 views
Acceptance testing preloading of data into GAE dev server datastore
In my application I have a set of of DAOs which I inject into my application layer. For an acceptance test I'm writing, I want to preload the dev_server datastore with data, so I use the same Spring ...
3
votes
4answers
620 views
What JavaScript UI testing framework should I use for a simple HTML5 + jQuery app?
I'm about to write a simple HTML5 + JavaScript (jQuery) app in my spare time in order to keep up with the latest web technologies (at work it's more advanced C# backend stuff).
I'd like to develop in ...
3
votes
3answers
285 views
Acceptance Tests for Tetris when using Test Driven Development
I want to try to implement the Tetris Game using TDD.
From what I've come to understand when reading Growing Object-Oriented Software, Guided by Tests, I should start by defining what would be my ...
3
votes
2answers
169 views
How do I merge Valgrind memcheck reports from multiple runs of the same process?
I've got an set of acceptance tests that run nightly. I'd like to use valgrind to check for memory leaks in my code automatically as an additional safe-guard to manually checking for leaks. Updating ...
3
votes
2answers
1k views
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.
3
votes
3answers
529 views
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 ...
2
votes
1answer
74 views
Mocking an expensive resource in acceptance tests (rspec, cucumber)
I'm in a bit of a quandary about how to go about writing a full stack acceptance test that involves on the lower levels interfacing with an expensive network call I'm trying to avoid.
I'm using ...
2
votes
1answer
56 views
What is the best method for setting up data for ATDD style automation?
I assume that most implementations have a base set of known data that gets spun up fresh each test run. I think there are a few basic schools of thought from here..
Have test code, use application ...
2
votes
1answer
90 views
Acceptance criteria (and other things) for a BDD story
We have a workflow engine that presents a list of available workflows (I mean workflow definitions, not instances) and user can click on the "Execute" link next to any workflow to ,well, execute a new ...
2
votes
1answer
387 views
Testing JSON API that uses Devise token authenticable module with Cucumber
I am writing acceptance tests for a RESTfull JSON service. I want to be able to run the tests against production server. This API is used by the iphone client. For authentication the JSON service uses ...
2
votes
1answer
69 views
acceptance testing Java OpenGL applications
I have a Java desktop application that has a major component of it written using Java OpenGL (JOGL). When it comes to writing automated acceptance tests for this, I'm not really sure how to write them ...
2
votes
2answers
243 views
Acceptance Tests vs Unit Test Examples
OK, so I have been trying to look at information on testing, different testing libraries what not and so forth.
It seems to me that people always clearly define the difference of these test as one ...
2
votes
1answer
124 views
Acceptance testing of Sql or Reports
I am responsible for the development and maintenance of a project containing several hundred Sql Reports (SSRS). I would really like to add acceptance testing.
Is there best practices for Report ...
2
votes
1answer
250 views
End-to-end testing a RESTful Web service (Rails)
I'm trying to sift through the myriad of test solutions out there, and I'm not even sure if I'm headed the right direction. The story is: we're running a RESTful Web service, implemented as a Rails ...
2
votes
1answer
740 views
How can I simulate a swipe gesture programmatically?
I'm currently trying to write some acceptance tests for our new iOS application using frank (and in turn UISpec). Whilst the framework supports touches as a basic way to interact with views, it ...
2
votes
2answers
393 views
Best practice for acceptance tests in Java
We have a program that that we would like to do acceptance tests on it. The input is an XML file with different "tasks". The output is another XML file with results.
What would be the best practice to ...
2
votes
2answers
164 views
Which acceptance testing frameworks are better for backend development?
By backend I mean software systems that consume data, process files or communicate using machine interfaces (REST, SOAP, CORBA, etc...). No fancy web or UI testing is necessary. I have in mind ...
2
votes
1answer
861 views
How can I delete seed data in SpecFlow
This may have already been brought up, a stupid question perhaps.
Anyway, I have been looking into SpecFlow and wondering how I can delete my seed data for the feature. This seed data are shared ...
2
votes
1answer
111 views
Dependencies in Acceptance Testing
Me and a co-worker are having a debate. We are on a craptastic legacy project and are slowly adding acceptance tests. He believes that we should be doing the work in the gui/watin then using a low ...
2
votes
2answers
79 views
Implementing Unit Testing and Acceptance Testing Halfway Through A Project
I am having a lot of headaches maintaining a website right now. Most often things would end up breaking after a couple of updates. This website was started by two developers in our team and then ...
2
votes
3answers
2k views
Can you clarify the differences between Conditions of Satisfaction (COS) and Acceptance Criteria?
My understanding so far: (please correct me if I'm wrong)
Ideally, COS are specified early by the product owner in the Sprint planning, facilitating a conversation. They can be considered an ...
2
votes
1answer
383 views
How to follow redirect from javascript in cucumber?
I have a a button (not a submit button) which does ajax calls before submitting another form.
What I want to do is
Given I am viewing homepage
When I press "JustAButton"
Then I should be on ...
2
votes
1answer
112 views
Acceptance testing for a chat client
I'm writing a chat client (msn messenger style) and I've got some problems in writing the acceptance tests for the send/receive feature.
Think for instance to the user story "A user can send a ...
2
votes
2answers
416 views
How should I implement this specflow step?
Okay, I've decided to try and get to grips with the whole TDD process from start to finish.
I'm writing a simple blog in ASP.NET MVC 2 Application and have started with doing acceptance tests to ...