Skip to content

Commit 47e21fb

Browse files
authored
Update README.adoc (#80)
1 parent a50b1fa commit 47e21fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -209,13 +209,13 @@ In testing the functionality of the application, the scopes and dependencies are
209209
----
210210

211211
The [hotspot=28 file=0]`@BeforeClass` annotation is placed on a method that runs before any of the test cases.
212-
In this case, the [hotspot=29-32 file=0]`oneTimeSetup` method retrieves the port number for the Open Liberty server and builds
212+
In this case, the [hotspot=29-32 file=0]`oneTimeSetup()` method retrieves the port number for the Open Liberty server and builds
213213
a base URL string that is used throughout the tests.
214214

215215
The [hotspot=34 file=0]`@Before` and [hotspot=40 file=0]`@After` annotations are placed on methods that run before and after every test case.
216-
These methods are generally used to perform any setup and teardown tasks. In this case, the [hotspot=35-38 file=0]`setup` method
216+
These methods are generally used to perform any setup and teardown tasks. In this case, the [hotspot=35-38 file=0]`setup()` method
217217
creates a JAX-RS client, which makes HTTP requests to the `inventory` service. This client must
218-
also be registered with a JSON-P provider ([hotspot=37 file=0]`JsrJsonpProvider`) to process JSON resources. The [hotspot=41-43 file=0]`teardown`
218+
also be registered with a JSON-P provider ([hotspot=37 file=0]`JsrJsonpProvider`) to process JSON resources. The [hotspot=41-43 file=0]`teardown()`
219219
method simply destroys this client instance.
220220

221221
See the following descriptions of the test cases:

0 commit comments

Comments
 (0)