Skip to content

Commit 78af970

Browse files
authored
Update README.md
1 parent 81242e2 commit 78af970

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ The preceding **ServiceLoader** provider configuration files declare a **JUnit F
204204

205205
* [ShutdownListener](https://github.com/Nordstrom/JUnit-Foundation/blob/master/src/main/java/com/nordstrom/automation/junit/ShutdownListener.java)
206206
**ShutdownListener** provides callbacks for events in the lifecycle of the JVM that runs the Java code that comprises your tests. It receives the following notification:
207-
* The JVM that's running the tests is about to close. This signals the completion the the test run.
207+
* The JVM that's running the tests is about to close. This signals the completion of the test run.
208208
* [TestClassWatcher](https://github.com/Nordstrom/JUnit-Foundation/blob/master/src/main/java/com/nordstrom/automation/junit/TestClassWatcher.java)
209209
**TestClassWatcher** provides callbacks for events in the lifecycle of **`TestClass`** objects. It receives the following notifications:
210210
* A **`TestClass`** object has been created to represent a JUnit test class or suite. Each **`TestClass`** has a one-to-one relationship with the JUnit runner that created it.
@@ -223,7 +223,7 @@ The preceding **ServiceLoader** provider configuration files declare a **JUnit F
223223
* [MethodWatcher](https://github.com/Nordstrom/JUnit-Foundation/blob/master/src/main/java/com/nordstrom/automation/junit/MethodWatcher.java)
224224
**MethodWatcher** provides callbacks for events in the lifecycle of a `particle method`, which is a component of an `atomic test`. It receives the following notifications:
225225
* A `particle method` is about to be invoked.
226-
* A `particle method` has just been invoked.
226+
* A `particle method` has just finished.
227227

228228
###### Service Provider Example - Implementing MethodWatcher
229229
```java

0 commit comments

Comments
 (0)