cs-qa.md 682 B

QA Test

HowTo

  1. In the BugTicket system, start listing known problems.
  2. Prioritize what needs to be fixed
  3. Make a fix, test the fix.
    • Unit tests are functional tests.
      • Unit tests are stand alone test.
      • Performs a single cohesive function.
      • Compiled separately
      • Is a single task under a larger work heading
    • Need to add smoke test - what absolutely must pass before it goes to production?
    • Need to add regression test - did the new code break something already out there?
  4. User Experience is above all.