Questions tagged [acceptance-testing]

Acceptance testing is a test conducted to determine if the requirements of a specification or contract are met

Acceptance testing is a term used in agile software development methodologies, particularly Extreme Programming, referring to the functional testing of a user story by the software development team during the implementation phase.

The customer specifies scenarios to test when a user story has been correctly implemented. A story can have one or many acceptance tests, whatever it takes to ensure the functionality works. Acceptance tests are black box system tests. Each acceptance test represents some expected result from the system. Customers are responsible for verifying the correctness of the acceptance tests and reviewing test scores to decide which failed tests are of highest priority. Acceptance tests are also used as regression tests prior to a production release. A user story is not considered complete until it has passed its acceptance tests. This means that new acceptance tests must be created for each iteration or the development team will report zero progress.

Source

591 questions
0
votes
2 answers

Struggling on what to write more for acceptance tests of user stories, use cases as well

I am not exactly clear on what an acceptance test is, is it basically information about the feature?
0
votes
3 answers

Codeception ElementNotVisibleException error, unable to select option, or click

I am unable to interact with an element using browser tests. It says the element is not interact-able, or not visible. This doesn't happen in Acceptance
0
votes
2 answers

web api 2 verify controller is running on production environment

I'm fairly new to C# and web api 2 and creating a web service for some internal usage. I have smoke- and acceptance tests setup in my CI pipeline for our development and test environments, these insert bogus data in our DBs, and validate all sorts…
Martin Hansen
  • 2,033
  • 1
  • 18
  • 34
0
votes
0 answers

Ember clear records between acceptance tests using Local Storage adapter

I am writing some acceptance tests for my Ember app and I don't know the best way to remove records created in localStorage between tests. I also don't want to lose any localStorage records I have created in my development environment. I am…
0
votes
0 answers

Compare generated xps document against a nominal xps, ignoring random resource GUID's

In my WPF application I'm generating an xps report based on a flowdocument. I've tested all the ViewModel part of the generation with unit tests, but I'd like to add an acceptance test (using specflow, http://www.specflow.org/) that compares the…
it's me
  • 133
  • 1
  • 1
  • 7
0
votes
1 answer

Functional/acceptance testing - multilanguage websites

Any best practices of creating acceptance and functional tests for multilingual sites? I would like to test content and functionality on multiple languages but not duplicate the tests. If we take Behat, how to arrange a test environment from the…
Alex.Sh
  • 123
  • 1
  • 2
  • 7
0
votes
1 answer

Quickly copy big MySQL database for testing

When running our suite of acceptance tests we would like to execute every single test on a defined database state. If one of the tests would write to the database (like create users or something else), it must of course not affect later tests. We…
Johannes
  • 11
  • 1
0
votes
1 answer

Codeception Acception: How to validate a changed Url

I am trying to validate and post login action. But the problem occur after login, when the user is redirected to the index page. There is a welcome message shown only for authenticated users. Can someone help me out. I'm using Yii 2 Framework! use…
0
votes
1 answer

How To Write Acceptance Tests for Internet Explorer with: Selenium, PHPUnit and Mac OS X?

I'm trying to write acceptance tests for a project using multiple browsers. All the tests run fine with: Firefox, Chrome and Safari. However, I don't know how to run them in Internet Explorer. I use: PHPUnit, Selenium and Mac OS X. I also use…
0
votes
1 answer

Fitnesse java.lang.NoClassDefFoundError: javax/faces/validator/ValidatorException

I am trying to test java methods within a multiple package project that has numerous imports. It works fine until it gets to the javax imports. Tnen it complains that it cannot find the class definition for this import. Do I need to explicitly…
MOZAKATAK
  • 483
  • 1
  • 7
  • 14
0
votes
1 answer

Angular E2E with Karma: unreliable event handling

I'm confronted with a strange error when executing my E2E tests. A broadcasted event is not consumed by one of my directives anymore and therefore a particular view is not rendered correctly. This does not occur only when I run the test alone. And,…
0
votes
1 answer

phantomJS crashes after form submit on windows

I'm running casperjs tests on a windows machine. Everything works well until I click submit button after filling form, phantomjs crashes and no test executes after submit code. casperjs --version 2.0.0 Form HTML is :
0
votes
1 answer

Android | Is it possible to receive a push notification when running test against your application

In my android application, actions are invoked based on the command received through push notification. I was wondering if there is any way through which i can test the complete use case (as it runs like in application) that includes: receiving the…
vijay_t
  • 776
  • 6
  • 14
0
votes
1 answer

Simulate shake gestures for a real device programmatically

I'm developing tests for an android app. I can simulate the shake gesture on emulators by setting sensor values using android console. $ telnet 127.0.0.1 5554 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. Android Console:…
Yugang Zhou
  • 7,123
  • 6
  • 32
  • 60
0
votes
1 answer

Codeception - Different Results in Different Envionments

I'm using Codeception to run some acceptance tests on a codebase. I have a pretty straight forward configuration for my tests: class_name: WebGuy modules: enabled: [PhpBrowser, WebHelper, Db] When I run these locally in MAMP on OSX, all the…
djt
  • 7,297
  • 11
  • 55
  • 102