Answers for "test scenario and test cases example"

1

what is scenario testing

Scenario testing is a software testing
 technique that is based on a scenario.
 Basically It involves converting business
 requirements to test scenarios for better
 understanding and to achieve an end to end testing. 
 
 For Examle :
As  test scenario – “Verify that the user is not
able to login with incorrect credentials”.
Now, we can  brake down into test scenario 
to multiple test cases like-

-Checking that user with correct username and
incorrect password should not be allowed to login.

-Checking that user with incorrect username
and correct password should not be allowed to login.

-Checking that user with incorrect username
and incorrect password should not be allowed to login.
Posted by: Guest on January-18-2021
0

test scenario, test case and test script

Test scenario is a description of user’s multiple
actions that might face when using the applications. 
It is about what to test. It is high level of test cases.

Test script in software testing is a set of instructions
that will be performed on the system under test to test that
the system functions as expected.

Test case is documentation which specifies input
values,expected output and the preconditions for executing
the test. It is about how to test . 
It's a layout of the low-level details on
how to test the scenario
Posted by: Guest on May-31-2021

Code answers related to "test scenario and test cases example"

Browse Popular Code Answers by Language