$customHeader
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Extracted from a previous brainstorming session (edx-platform Code Structure: Hackathon XIV):

    • Unit tests 
      • Definition
        • Do not have dependencies on peer or higher layers.
        • May depend on low-level core libraries.
        • White-box tests of all edge conditions and paths.
      • Guidelines
        • Can use/test internal methods of the module.
        • Use override_settings instead of requiring settings in a central envs/tests.py.
    • Integration tests
      • Definition  (Note: this differs from testing.rst.)
        • End-to-end python integration tests that test dependencies between apps.
        • At least one inter-dependency is not mocked.
        • May test multiple paths, including non-happy paths if impacted by inter-dependencies.
      • Guidelines
        • Stored centrally
        • Only use exposed public interfaces
    • Acceptance tests
      • Definition
        • End-to-end UI-level black-box tests.
        • Mostly only happy paths are tested.  Regularly occurring exceptional paths that are integral to the user-facing feature may also be tested.
        • All scenarios described in user-documentation are typically covered.
  • No labels