First One:
Scenario: Manager can log in into the login page (that is my one scenario next I move to the test cases)
For the above scenarios, I wrote the four test cases
First Test Case: Verify manager with valid user id and valid password
Second Test Case: Verify manager with in-valid user id and valid password
Third Test Case: Verify manager with valid user id and in-valid password
Fourth Test Case: Verify manager with in-valid user id and in-valid password
My question is if I wrote four test cases of one scenario so the scenario is the same of all test cases or it will be changed to every test cases like;
Second One:
Scenario: Manager can log in into the login page
Test case: Verify manager with valid user id and valid password
Scenario: Manager cannot log in into the login page
Test case: Verify manager with invalid user id and valid password
Which one is correct?