https://kotlinlang.org logo
#mockk
Title
# mockk
b

Big Chungus

10/01/2019, 8:32 AM
Hello, is there a way to mock this interface in common module:
Copy code
external interface DElement : DNode {
}
Currently I'm hacking it with:
Copy code
private abstract class StubDElement:DElement
val mock:DElement = mockk<StubDElement>()
2 Views