Users Online
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Latest Articles
Articles Hierarchy
03 TestCase Development
What is Test Basis in Software Testing?
Test Basis is defined as the source for creation of test Cases. It can be the Application itself or the requirement documents like SRS (Software Requirement Specification), BRS (Business Requirement Specification), etc.
This tutorial explains "Test-Basis". with the help of a case study
Consider a scenario, where the client sends a request to add a functionality to Flight Reservation to allow sending an order via email.
He also specifies the GUI fields and buttons he wants.
Even though, the application is yet to be developed, try and develop a few test cases for this requirement.
A few test cases among the many you could have thought of are listed below
- Check the response when valid Email ID is entered, and send is pressed
- Check the response when invalid Email ID are entered and send is pressed
- Check the response when Email ID is empty and send is pressed
You may have also realized that to create test cases you need to look at something to base your test. This is nothing but Test Basis. This test basis could be the actual Application Under Test (AUT), or maybe even by experience but most of the times, like, in this case, would be based on documents.
In fact, this is what happens during the different phases of V- Model.
Where test plans are created using the corresponding documents, and once the code is ready, it is ready for testing.