Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Latest commit

 

History

History
14 lines (13 loc) · 392 Bytes

File metadata and controls

14 lines (13 loc) · 392 Bytes

Python

Test

  • Unit Testing
    • Run all tests at once
      • Make a folder test
      • Make __init__.py in this directory
      • Name your testfiles like test_*.py
      • Open a terminal and redirect to test folder or parent directory of test
      • Run this command:
        • python -m unittest
  • UI Testing
  • Integration Testing

TDD