Skip to content

Commit

Permalink
Fix malformed sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-cummins committed May 17, 2023
1 parent 34d7f86 commit e03b7e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/getting-started-testing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ public class MockTestCase {
}
}
----
<1> `@InjectMock` results in a mock being and is available in test methods of the test class (other test classes are *not* affected by this)
<1> `@InjectMock` results in a Mockito mock being created, which is then available in test methods of the test class (other test classes are *not* affected by this)
<2> The `mockableBean1` is configured here for every test method of the class
<3> Since the `mockableBean2` mock has not been configured, it will return the default Mockito response.
<4> In this test the `mockableBean2` is configured, so it returns the configured response.
Expand Down

0 comments on commit e03b7e5

Please sign in to comment.