
- Forum
- Testing
- Software Testing
- Test suite
Test suite
This is a discussion on Test suite within the Software Testing forums, part of the Testing category; Could someone tell me something more about the "test suites", not just only the definition. what are the different types ...
-
04-21-2008, 07:04 AM #1
- Join Date
- Aug 2006
- Location
- kochi,kerala
- Answers
- 1
Test suite
Could someone tell me something more about the "test suites", not just only the definition.
what are the different types and is there any classification based on the mode of use?
-
04-21-2008, 11:20 AM #2
- Join Date
- Dec 2007
- Answers
- 3
Test suite
In software engineering, a test suite, also known as a validation suite, is a collection of test cases that are intended to be used as input to a software program to show that it has some specified set of behaviors. Test suites are used to group similar test cases together. A system might e.g. have a smoke test suite that consists only of smoke tests or a test suite for some specific functionality in the system.
A test suite often contains detailed instructions or goals for each collection of test cases and information on the system configuration to be used during testing. A group of test cases may also contain prerequisite states or steps, and descriptions of the following tests.
Collections of test cases are sometimes incorrectly termed a test plan. They may also be called a test script, or even a test scenario.
Different types of test suites
An executable test suite is a test suite that is ready to be executed. This usually means that there exists a test harness that is integrated with the suite and such that the test suite and the test harness together can work on a sufficiently detailed level to correctly communicate with the system under test (SUT).
A test suite for a primality testing subroutine might consist of a list of numbers and their primality (prime or composite), along with a testing subroutine. The testing subroutine would supply each number in the list to the primality tester, and verify that the result of each test is correct.
The counterpart of an executable test suite is an abstract test suite. However, often terms test suites and test plans are used, roughly with the same meaning as executable and abstract test suites, respectively.
-
According to my opinion, A Test Suite is a collection of test scripts. Consider a case that we are having a set of script (.t) file. If we want to run these scripts against our application, we have to select the required testcase or we have to run the entire script file. But after the completion of that script file, the user has to manually change that to the next script file to run those testcases available in that script. Instead of that silktest provides a way to continuously select a set of script files and run those script files at-a-stretch. This can be done by creating a new Test Suite file and declare the needed script files in that suite file.
Different types of test suites are
Texture classification
Segmentation test suites
The organization of segmentation test suites (SS/US).
-
According to my opinion, A Test Suite is a collection of test scripts. Consider a case that we are having a set of script (.t) file. If we want to run these scripts against our application, we have to select the required testcase or we have to run the entire script file. But after the completion of that script file, the user has to manually change that to the next script file to run those testcases available in that script. Instead of that silktest provides a way to continuously select a set of script files and run those script files at-a-stretch. This can be done by creating a new Test Suite file and declare the needed script files in that suite file.
Different types of test suites are
Texture classification
Segmentation test suites
The organization of segmentation test suites (SS/US).
-
12-19-2011, 05:31 AM #5
- Join Date
- Oct 2011
- Answers
- 24
Hi,
According to ISTQB :
When several test cases are combined together in a systematic way, it becomes a test suite.
In test suite it is like a flow i.e post condition of one test is pre condition of another test.
-
12-26-2011, 04:59 AM #6
- Join Date
- Oct 2011
- Answers
- 27
Test Suite
Hi All,
According to me Test suite is nothing but the collection of test cases where the post condition of one test case can be the precondition of another test cases.
Test Case:
Test Case is nothing but the combination of mainly three things.
<I S O>
Where
I=Input values
S=Some pre conditions
O=The expected output.
Thanks
Sudhansu
-
Test suite is a collection of test case in which the output of one test case acts as input of another test case.
Test case is derived from Test Condition i.e. Test Case is a combination of test condition to perform some task.
Test condition is anything we should test.
Types of test suite depends on functionality of software and also on some other factor.It can be
Executable test suite, smoke test suite, or test suite for the primality testing.
-
Sponsored Ads

Reply With Quote





