From b665d621927ad0bc6ae6409cf5bba9cde4dc2bba Mon Sep 17 00:00:00 2001 From: Adrien Grand Date: Fri, 1 Mar 2019 15:16:52 +0100 Subject: [PATCH] Fix formatting of TESTING.asciidoc. --- TESTING.asciidoc | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/TESTING.asciidoc b/TESTING.asciidoc index 8ea6ff0ad90..c2398de1d81 100644 --- a/TESTING.asciidoc +++ b/TESTING.asciidoc @@ -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