Files
mongo/buildscripts/resmokelib/testing/testcases/README.md
Steve McClure 1061ba50ee SERVER-108653: Add README for resmoke testcases (#39555)
GitOrigin-RevId: d4c07063b450a6fff3681867b9ed95118b8f4980
2025-08-02 03:01:26 +00:00

3.8 KiB

TestCases

TestCases extend Python-based unittest.TestCase objects that resmoke can run as different "kinds" of tests.

Supported TestCases

Specify any of the following as the test_kind in your Suite config:

Interfaces

Top level interfaces:

  • TestCase - A test case to execute. The run_test method must be implemented.
  • ProcessTestCase - Base class for TestCases that executes an external process. The _make_process method must be implemented.

Subclasses: