0% found this document useful (0 votes)
58 views

Test Case

System testing involves testing the overall functionality of a system to ensure requirements are met. It includes creating test plans and cases, conducting tests, and reporting results. Guidelines for system test design recommend testing all requirements, using representative data, and establishing presence of related requirements with minimized cases. Unit testing focuses on testing individual software modules with small, fast, independent tests that are measured. An example login form test case tests various login scenarios and validates expected results.

Uploaded by

sumithvarkey
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
58 views

Test Case

System testing involves testing the overall functionality of a system to ensure requirements are met. It includes creating test plans and cases, conducting tests, and reporting results. Guidelines for system test design recommend testing all requirements, using representative data, and establishing presence of related requirements with minimized cases. Unit testing focuses on testing individual software modules with small, fast, independent tests that are measured. An example login form test case tests various login scenarios and validates expected results.

Uploaded by

sumithvarkey
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Test Case

A set of test inputs, execution conditions, and expected results developed


for aparticular objective, such as to exercise a particular program path or
to verify compliancewith a specific requirement
System Testing

Introduction
The goal of System Testing is to ensure that the system performs as
per the functional requirements specified by client.

A system test covers the testing of functions within the system.


System testing is performed once integration testing has been
completed. System Testing procedures consist of:

• Creating Test Plans


• Creating test data
• Conducting tests according to the System Test Plan
• Reporting and reviewing the results of the test

System Test Design Guidelines


The following are recommended guidelines when designing system
tests:

• Design test cases to ensure that all requirements


identified in the Functional Requirements Analysis
Matrix document are tested by one or more test
cases.

• In order to minimize the number of test cases


required, design test cases to establish the
presence of several related requirements.

• Use live or representative data as much as


possible in order to provide realistic functional
tests. Any comments about setting up the test
data are to be documented.

• Data for most reports should come from the data


prepared for testing the interactive processes. It
is acceptable to have the reports contain existing
data from the database.
Unit Testing

• Keep unit tests small and fast

• Measure the tests

• Make unit tests simple to run

• Keep testing at unit level

• Keep tests independent

Login Form
Top of Form
Enter your login name and password click the
Submit button.

Username:

Password:

Submit
Bottom of Form
Steps to carry out the test.

1. visit LoginPage
2. enter userID
3. enter password
4. click login

Case Action Acutal


Number Expected result Pass/Fai
result l

1 Correct value for Login is Same as pass


username & password successful & expected
home pages
are loaded on
user

2 Correctvalue for Login is


username &password successful &
home pages
are loaded on
admin Same as pass
expected

3 Incorrect value for user Login failure same as pass


name & password is reported expected

4 Links on home page Correspondin Same as pass


are clicked g pages are expected
loaded

5 When the password It should Same as pass


entry is made encrypt and expected
display as “.

You might also like