Fix formatting of TESTING.asciidoc.

This commit is contained in:
Adrien Grand 2019-03-01 15:16:52 +01:00
parent 0f85182abe
commit b665d62192
1 changed files with 10 additions and 9 deletions

View File

@ -597,15 +597,16 @@ fetching the latest from the remote.
=== Base classes for test cases
There are multiple base classes for tests:
- **`ESTestCase`**: The base class of all tests. It is typically extended
directly by unit tests.
- **`ESSingleNodeTestCase`**: This test case sets up a cluster that has a
single node.
- **`ESIntegTestCase`**: An integration test case that creates a cluster that
might have multiple nodes.
- **`ESRestTestCase`**: An integration tests that interacts with an external
cluster via the REST API. For instance, YAML tests run via sub classes of
`ESRestTestCase`.
* **`ESTestCase`**: The base class of all tests. It is typically extended
directly by unit tests.
* **`ESSingleNodeTestCase`**: This test case sets up a cluster that has a
single node.
* **`ESIntegTestCase`**: An integration test case that creates a cluster that
might have multiple nodes.
* **`ESRestTestCase`**: An integration tests that interacts with an external
cluster via the REST API. For instance, YAML tests run via sub classes of
`ESRestTestCase`.
=== Good practices