Hi everyone,
I’m a new tester. Could you guys help clarify the difference between test case and test suite. Is it the same or not? I’m really confused. Please help.
First, I would like to say that it’s understandable for you to get confused with terms and definition. It’s especially true when you are a new testers. I’ve been there too….
Go back to your question: What’s difference between test case and test suite?
Basically, test case is a single test to verify a specific test objective.
For example, you may have these two test cases:
1) A test case to verify login function with valid account.
2) A test case to verify login function with invalid account.
Meanwhile a test suite is a collection or group of test cases. Take example above, you can group those two test cases into a test suite. In other words, you have a Login test suite consisting of these two test cases.
Hey Ankit,
First, I would like to say that it’s understandable for you to get confused with terms and definition. It’s especially true when you are a new testers. I’ve been there too….
Go back to your question: What’s difference between test case and test suite?
Basically, test case is a single test to verify a specific test objective.
For example, you may have these two test cases:
1) A test case to verify login function with valid account.
2) A test case to verify login function with invalid account.
Meanwhile a test suite is a collection or group of test cases. Take example above, you can group those two test cases into a test suite. In other words, you have a Login test suite consisting of these two test cases.
Hope I make it clearer for you.