An Acceptance environment is set up alongside the Development, System Test, and Production environments and is used to allow business users to test a change before promoting it into the Production Environment.
Questions tagged [acceptance]
37 questions
5
votes
3 answers
SpringBoot - Testing with Flyway and H2 database
I'm coding acceptance tests with Cucumber, and I want to use a H2 database for the tests.
The application-test.properties looks…

AleGallagher
- 1,745
- 7
- 30
- 40
4
votes
0 answers
Ember acceptance test - timeouts
I have a reasonably special use-case:
I have an input field which issues a search when the user has stopped typing for 500ms. This is developed as a reusable add-on.
I would like to write an acceptance test for this but I cannot make the tests pass…

benqus
- 1,119
- 2
- 10
- 24
4
votes
5 answers
In scrum, is changing acceptance criteria during a sprint OK?
My organization is currently implementing Scrum. While working on a product backlog item to change the way some business logic is processed, we realized that some of the business logic is flawed. The PBI and its acceptance criteria are currently…

scott degen
- 125
- 1
- 1
- 7
3
votes
1 answer
Where and how to setup data for Codeception Api testing (Cests)
I am setting up Codeception for Api testing.
I have a Cest class, say...
class ZooCest {
public function addingALionToZoo(ApiTester $I)
{
$I->sendPost('zoo/add_animal', ['animal_id' => $animalId]);
}
}
The question is, where…

Hector Ordonez
- 1,044
- 1
- 12
- 20
2
votes
1 answer
Acceptance Testing - Check Email Received
I have some acceptance test allows a Windows service to send an email out via smtp, does anyone know of a good way to check if a email has been received via code, at present being sent to an Exchange Mail Box?
Regards
Iain

Iain
- 6,392
- 2
- 30
- 50
2
votes
2 answers
Codeception acceptance tests exactly the same buttons in different forms on the same page
I have two exactly the same buttons in two different forms on the same page. Forms and buttons have no id or name and the only difference is between those forms, which is the action.

kotsios
- 59
- 7
2
votes
1 answer
How to run CodedUI tests outside application with Batch files and create a report
I managed to create Page Object Model UIMap test cases for acceptance testing in Visual Studio 2013. I'm having issues on how to run test them outside application with Batch files and create a report.

NuLLByt3
- 91
- 3
- 9
2
votes
1 answer
How to hook into beforeSuite event with Codeception for API Acceptance tests?
I am building API Acceptance tests with Codeception.
I am familiar with Unit tests there and I used the setUp method in those classes for all logic required before running all the tests of the class.
However I didn't find anything like this for…

Hector Ordonez
- 1,044
- 1
- 12
- 20
2
votes
1 answer
How to go about automated acceptance testing of desktop Java app?
I've been thinking about acceptance testing and would like to gain a clearer understanding of how it can be automated (and fitted into a Continuous Delivery pipeline, for example). I have a desktop application written in Java, a messenger…

Amoeba
- 1,573
- 4
- 19
- 25
1
vote
2 answers
How to click on href using Acceptance testing w/ Rspec and Capybara
I have this content in the page source:
UM-Employee
Any ideas on how to test this…

John Dow
- 1,431
- 2
- 11
- 8
1
vote
1 answer
How can I configurate the late acceptance algorithm?
I am encountering some problems when it comes to modifying the applied algorithms:
First, it seems I cannot change the late acceptance algorithm configuration. This is my local search configuration, which works nicely when I am not specifying…

pineapplw
- 71
- 3
1
vote
2 answers
TFS Query to get blank (or) no entries in Acceptance Criteria field of Feature or User Story
I want to write a TFS Query to get blank (or) no entries in Acceptance Criteria field/box for Features or User Story's in project.
How can I write Query as I can't see any = or <> operators against 'Acceptance Criteria'. Only I can see 'Contains…

Kumar
- 71
- 8
1
vote
1 answer
Do we need separate environments for testing and acceptance (staging)
We will be migrating from our old servers to new ones and now the question has come up: should we keep 3 servers:
testing
acceptance (also known as staging)
production
Or should we lump the first together, and just get two servers. The software we…

Ivana
- 643
- 10
- 27
1
vote
1 answer
EmberJS - Click() helper doesn't work as expected
When passing the JQuery selector to the click() method in emberjs, while testing, the element doesn't get clicked.
I'm trying to write a simple acceptance test where an element with an id and an href gets clicked and the URL changes, and then I…

Miroslav Eremić
- 11
- 2
1
vote
0 answers
Ember testing Oauth routes with Qunit
I've no experience in testing and I was wondering how to test unauthorized route requests on ember qunit
Currently what i've done is this. Goes to a route ( gets sent off ) Looks for div that exists on the authorised route and if the div doesnt…

kristjan reinhold
- 2,038
- 1
- 17
- 34