Skip to content

Commit

Permalink
Merge pull request #33453 from holly-cummins/missing-word
Browse files Browse the repository at this point in the history
Fix malformed sentence in guide
  • Loading branch information
geoand authored May 18, 2023
2 parents f2a18a8 + e03b7e5 commit 9d2fff9
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 9d2fff9

Please sign in to comment.