Answers for "scenario testing and test cases"

2

test case vs test scenario

-Scenario is high level descripton of
what are we going to test. 
-Test case is step by step off the test.
For example 
Test scenario is
Login to the application with valid credentials
Test Case is 
Login as a seller
Given valid credentials for a moderator role
When I enter user name and password
And I click login button etc    
Test scenario can have multiple test cases.
Posted by: Guest on January-07-2021
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

Code answers related to "scenario testing and test cases"

Browse Popular Code Answers by Language