testing Getting started with testing

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

This section provides an overview of what testing is, and why a developer might want to use it.

It should also mention any large subjects within testing, and link out to the related topics. Since the Documentation for testing is new, you may need to create initial versions of those related topics.

Installation or Setup

Detailed instructions on getting testing set up or installed.

Test case

A test case or test script is a more or less formal description of the actions needed to prove that a requirement is met. It has a descriptive title, may start off with some preparation and ends with an expected result. Usually the test cases for a system under test are organised into test suites.

Log on to system

StepResult
Start systemStartup screen shows, logon asked
Type usernameusername shows
Type password'*' characters show the number of characters entered
Press EnterMain screen shows

Test case

TEST CASE –

A test case is a set of conditions and steps that when followed/applied, a tester can determine whether a feature, an application or a software system is working as originally designed.

A test case usually contains References to the original task, Pre-conditions ( if the pre-conditions are not met, testing can not continue), Steps (steps describe what a tester needs to do in order to get a result), Expected Result (what should happen after following all the described steps) but may also contain Estimation, Priority, Environment on which to perform test.

Example of a test case :-

Title – Perform a login action on mail.google.com with an invalid password

Preconditions:

  1. Access to supported browsers: IE 11, Firefox, Chrome.
  2. Internet connection
  3. A valid gmail account

Test steps :

  1. Launch the URL "mail.google.com" on one of the supported browsers
  2. Enter your email address in the email field
  3. Click the NEXT button.
  4. Enter an incorrect password in the Password field
  5. Click the Sign-In button.

Expected Result – A error message will be displayed under the Password field with red letters stating "Wrong password. Try again"



Got any testing Question?