From 77bf9f968fd21da4ec9758fdcd7ae26806abf765 Mon Sep 17 00:00:00 2001 From: TanuAgrawal123 <37895989+TanuAgrawal123@users.noreply.github.com> Date: Mon, 5 Nov 2018 07:20:15 +0530 Subject: [PATCH] Fixed some grammatical mistake. (#21932) * Fixed some grammatical mistake. * Revert to nested lists --- guide/english/agile/acceptance-testing/index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/guide/english/agile/acceptance-testing/index.md b/guide/english/agile/acceptance-testing/index.md index 633fe72c8a..1cc4bd0a72 100644 --- a/guide/english/agile/acceptance-testing/index.md +++ b/guide/english/agile/acceptance-testing/index.md @@ -4,22 +4,22 @@ title: Acceptance Testing ## Acceptance Testing -Acceptance testing, a testing technique performed to determine whether or not the software system has met the requirement specifications. The main purpose of this test is to evaluate the system's compliance with the business requirements and verify if it has met the required criteria for delivery to end users. +Acceptance Testing, a Testing technique performed to determine whether or not the software system has met the requirement specifications. The main purpose of this test is to evaluate the system's compliance with the business requirements and verify if it is has met the required criteria for delivery to end users. -In software development, user acceptance testing (UAT) - also called beta testing, application testing, and end user testing - is a phase of software development in which the software is tested in the "real world" by the intended audience. In engineering and its various subdisciplines acceptance testing is a test conducted to determine if the requirements of a specification or contract are met. +In software development, User Acceptance Testing (UAT) - also called beta testing, application testing, and end user testing - is a phase of software development in which the software is tested in the "real world" by the intended audience.In engineering and its various subdisciplines acceptance testing is a test conducted to determine if the requirements of a specification or contract are met. There are various forms of acceptance testing: -> - User acceptance Testing +> - User Acceptance Testing > -> - Business acceptance Testing +> - Business Acceptance Testing > > - Alpha Testing > > - Beta Testing ## Acceptance Criteria -Acceptance criteria are defined on the basis of the following attributes +Acceptance criteria are defined on the basis of the following attributes: > - Functional Correctness and Completeness > @@ -114,9 +114,9 @@ There are multiple scenarios here such as: You can write Acceptance Tests for each of these sub-features of the bigger dialog box feature. Aside from the code that handles the infrastructure of how the test will be executed, your test for the first scenario could look like (in pseudocode): - Given that the page is opened - - The dialog box should be visible - - And The dialog box should contain an input box - - And The input box should have placeholder text "Your name, please!" + - The dialog box should be visible + - And The dialog box should contain an input box + - And The input box should have placeholder text "Your name, please!" ### Notes