Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit 87ef0be

Browse files
committed
Merge pull request #3 from dart-lang/devoncarew-patch-1
Update README.md
2 parents 233fd6b + 58b9c6f commit 87ef0be

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
Support for discovering tests and test suites using reflection.
44

5-
It follows the xUnit style where each class is a test suite, and each method
6-
with the name prefix "test_" is a single text.
5+
This package follows the xUnit style where each class is a test suite, and each
6+
method with the name prefix `test_` is a single test.
77

8-
Methods with names starting with "test_" are are run using test() function with
9-
the corresponding name. If the class defines methods setUp() or tearDown(),
10-
they are executed before / after each test correspondingly, even the test fails.
8+
Methods with names starting with `test_` are run using the `test()` function with
9+
the corresponding name. If the class defines methods `setUp()` or `tearDown()`,
10+
they are executed before / after each test correspondingly, even if the test fails.
1111

12-
Methods with names starting with "solo_test_" are run using solo_test() function.
12+
Methods with names starting with `solo_test_` are run using the `solo_test()` function.
1313

14-
Methods with names starting with "fail_" are expected to fail.
14+
Methods with names starting with `fail_` are expected to fail.
1515

16-
Methods with names starting with "solo_fail_" are run using solo_test() function
16+
Methods with names starting with `solo_fail_` are run using the `solo_test()` function
1717
and expected to fail.
1818

19-
Method returning Future class instances are asynchronous, so tearDown() is
20-
executed after the returned Future completes.
19+
Method returning `Future` class instances are asynchronous, so `tearDown()` is
20+
executed after the returned `Future` completes.
2121

2222
## Features and bugs
2323

0 commit comments

Comments
 (0)