Skip to content

Instantly share code, notes, and snippets.

@sukyology
Created January 17, 2021 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sukyology/5ec8e8573a7a5356cef34e382e0c5ef7 to your computer and use it in GitHub Desktop.
Save sukyology/5ec8e8573a7a5356cef34e382e0c5ef7 to your computer and use it in GitHub Desktop.
open class Root {
fun root() = "root"
}
class Sub : Root() {
fun sub() = "sub"
}
class ExampleTest {
@Test
fun `class transform`() {
mockk<Sub>()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment