Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Below is test plan for testing accessibility of using Python with these tools.

Test Plan for IDLE

The test plan covers two parts:

  1. Python has a list of reserved keywords. Most keywords are regular words but there are a few that are abnormal. One part of the test plan is to make sure these abnormal keywords are communicated to AT users in an understandable way.
  2. The other part of the test plan is to make sure special characters used in scripts such as punctuations and symbols are are communicated to AT users in an understandable way.

Steps to test reserved keywords "def" and "nonlocal"

1. Launch IDLE, which brings up a command line interface;

...

Repeat steps above by copying and pasting the code into the interface.

Steps to test reserved keywords "elif"

"elif" stands for "else if". This test is to ensure this special word can be communicated to AT users.

...

Repeat steps above by copying and pasting the code into the interface.

Steps to test the communication of special characters

Writing scripts often involve the use of special characters such as ~ ! @ # etc. This test is to ensure these special chars can be entered and communicated to AT users properly.

...

Repeat steps above by copying and pasting the code into the interface.

Test plan for Python Launcher

1. Open a text editor;

2. Copy and paste the script below into the editor;

...