Skip to content

Commit

Permalink
[Docs] Use capital letters in section headings (#31678)
Browse files Browse the repository at this point in the history
Section headings should start with capital letters.
  • Loading branch information
FredrikMeyer authored and Christoph Büscher committed Jun 29, 2018
1 parent 05daaff commit abee542
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/reference/testing/testing-framework.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,22 @@ If your test is a well isolated unit test which doesn't need a running Elasticse


[[integration-tests]]
=== integration tests
=== Integration tests

These kind of tests require firing up a whole cluster of nodes, before the tests can actually be run. Compared to unit tests they are obviously way more time consuming, but the test infrastructure tries to minimize the time cost by only restarting the whole cluster, if this is configured explicitly.

The class your tests have to inherit from is `ESIntegTestCase`. By inheriting from this class, you will no longer need to start Elasticsearch nodes manually in your test, although you might need to ensure that at least a certain number of nodes are up. The integration test behaviour can be configured heavily by specifying different system properties on test runs. See the `TESTING.asciidoc` documentation in the https://github.com/elastic/elasticsearch/blob/master/TESTING.asciidoc[source repository] for more information.


[[number-of-shards]]
==== number of shards
==== Number of shards

The number of shards used for indices created during integration tests is randomized between `1` and `10` unless overwritten upon index creation via index settings.
The rule of thumb is not to specify the number of shards unless needed, so that each test will use a different one all the time. Alternatively you can override the `numberOfShards()` method. The same applies to the `numberOfReplicas()` method.


[[helper-methods]]
==== generic helper methods
==== Generic helper methods

There are a couple of helper methods in `ESIntegTestCase`, which will make your tests shorter and more concise.

Expand All @@ -88,7 +88,7 @@ There are a couple of helper methods in `ESIntegTestCase`, which will make your


[[test-cluster-methods]]
==== test cluster methods
==== Test cluster methods

The `InternalTestCluster` class is the heart of the cluster functionality in a randomized test and allows you to configure a specific setting or replay certain types of outages to check, how your custom code reacts.

Expand Down

0 comments on commit abee542

Please sign in to comment.