Skip to content

Commit

Permalink
Fixed classname casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Poulton committed May 2, 2022
1 parent 568cb8b commit e8e4412
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mockk/jvm/src/main/kotlin/io/mockk/junit4/MockKRule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import org.junit.runner.Description
* ```
* class ExampleTest {
* @get:Rule
* val mockkRule = MockkRule(this)
* val mockkRule = MockKRule(this)
*
* @MockK
* private lateinit var car: Car
Expand All @@ -31,7 +31,7 @@ import org.junit.runner.Description
* }
* ```
*/
class MockkRule(private val testSubject: Any) : TestWatcher(), TestRule {
class MockKRule(private val testSubject: Any) : TestWatcher(), TestRule {
override fun starting(description: Description?) {
super.starting(description)
MockKAnnotations.init(testSubject)
Expand Down

0 comments on commit e8e4412

Please sign in to comment.