@@ -9,23 +9,23 @@ defmodule ExUnit.Formatter do
9
9
The following events are possible:
10
10
11
11
* `{:suite_started, opts}` -
12
- the suite has started with the specified options to the runner.
12
+ the suite has started with the specified options to the runner.
13
13
14
14
* `{:suite_finished, run_us, load_us}` -
15
- the suite has finished. `run_us` and `load_us` are the run and load
16
- times in microseconds respectively.
15
+ the suite has finished. `run_us` and `load_us` are the run and load
16
+ times in microseconds respectively.
17
17
18
18
* `{:case_started, test_case}` -
19
- a test case has started. See `ExUnit.TestCase` for details.
19
+ a test case has started. See `ExUnit.TestCase` for details.
20
20
21
21
* `{:case_finished, test_case}` -
22
- a test case has finished. See `ExUnit.TestCase` for details.
22
+ a test case has finished. See `ExUnit.TestCase` for details.
23
23
24
24
* `{:test_started, test_case}` -
25
- a test case has started. See `ExUnit.Test` for details.
25
+ a test case has started. See `ExUnit.Test` for details.
26
26
27
27
* `{:test_finished, test_case}` -
28
- a test case has finished. See `ExUnit.Test` for details.
28
+ a test case has finished. See `ExUnit.Test` for details.
29
29
30
30
"""
31
31
0 commit comments