Negative Test Cases Examples

1. Embedded Single Quote – Most SQL based databasesystems have issues when users store information that contain a single quote(e.g. Gaurav’s car). For each screen that accepts alphanumeric data entry,try entering text that contains one or more single quotes.

2. Required Data Entry – Your functional specification should clearly indicate fields that require data entry on screens. Test each field on the screen that has been indicated as being required to ensure it forces you to enter data in the field.

3. Field Type Test – Your functional specification should clearly indicate fields that require specific data entry requirements(date fields, numeric fields, phone numbers, zip codes, etc). Test each field on the screen that has been indicated as having special types to ensure it forcesyou to enter data in the correct format based on the field type (numeric fieldsshould not allow alphabetic or special characters, date fields should require avalid date, etc)

4. Field Size Test – Your functional specification should clearly indicate the number of characters you can enter into a field(for example, the first name must be 50 or less characters). Write test cases to ensure that you can only enter the specified number of characters. Preventing the user from entering more characters than is allowed is more elegant than giving an error message after they have already entered too many characters.

5. Numeric Bounds Test – For numeric fields, it isimportant to test for lower and upper bounds. For example, if you are calculating interest charged to an account, you would never have a negative interest amount applied to an account that earns interest, therefore, youshould try testing it with a negative number. Likewise, if your functional specification requires that a field be in a specific range (e.g. from 10 to 50), you should try entering 9 or 51, it should fail with a graceful message.

6. Numeric Limits Test – Most database systems and programming languages allow numeric items to be identified as integers or long integers. Normally, an integer has a range of -32,767 to 32,767 and long integers can range from -2,147,483,648 to 2,147,483,647. For numeric data entrythat do not have specified bounds limits, work with these limits to ensure that it does not get an numeric overflow error.

7. Date Bounds Test – For date fields, it is important to test for lower and upper bounds. For example, if you are checking a birth date field, it is probably a good bet that the person’s birth date is no older than 150 years ago. Likewise, their birth date should not be a date inthe future.

8. Date Validity – For date fields, it is important toensure that invalid dates are not allowed (04/31/2007 is an invalid date). Yourtest cases should also check for leap years (every 4th and 400th year is a leapyear).

9. Web Session Testing – Many web applications rely onthe browser session to keep track of the person logged in, settings for theapplication, etc. Most screens in a web application are not designed to belaunched without first logging in. Create test cases to launch web pages withinthe application without first logging in. The web application should ensure ithas a valid logged in session before rendering pages within the application.

10. Performance Changes – As you release new versions of your product, you should have a set of performance tests that you run that identify the speed of your screens (screens that list information, screens that add/update/delete data, etc). Your test suite should include test cases that compare the prior release performance statistics to the current release. This can aid in identifying potential performance problems that will be manifested with code changes to the current release.