Hello, is there a way to mock this interface in co...
# mockk
b
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>()