Skip to main content

Posts

Showing posts from October, 2016

Identifying test scenarios

Identifying Test Scenarios Test scenarios: Test scenarios are the high level classification of test requirement grouped depending on the functionality of a module. Test case:   Test cases for software help guild the tester through a sequence of steps to validate whether a software application is free of bugs and working as required by the end user.  A test case with valid functionality is called positive test case and a test case with invalid functionality is called negative test case. Test case should cover most of the positive inputs and should be developed for all most common potential scenarios. The basic objective of writing test case is to validate the testing coverage of the application. A good test case should have high priority of finding bugs. Test Case Template:  Test scenario ID - The ID of the test suite to which this test case belongs. Test case ID - The ID of the test case. Category - The type ...

Software Testing - QA, QC & Testing

Software Testing - QA, QC & Testing Quality Assurance: QA includes activities that ensure the implementation of processes, procedures and standards in context to verification of developed software and intended requirements. Focuses on processes and procedures rather than conducting actual testing on the system. It is a subset of Software Test Life Cycle (STLC). Quality Control:  It includes activities that ensure the verification of a developed software with respect to documented (or not in some cases) requirements. Focuses on actual testing by executing the software with an aim to identify bug/defect through implementation of procedures and process. QC can be considered as the subset of Quality Assurance. Testing: It includes activities that ensure the identification of bugs/error/defects in a software. Focuses on actual testing. Testing is the subset of Quality Control. References: https://www.tutorialspoint.com/software_testing/software_testing_qa_...