Closed dsilvasc closed 6 years ago
Related to https://github.com/abeln/dotty/issues/9
trait Demo { def m: String } val d: Demo = Mockito.mock(classOf[Demo]) val str = d.m // method m is unmocked, so Mockito returns null for it println(str.length) // compile error or runtime null pointer exception?
Same as #9: will probably be a runtime NPE.
Related to https://github.com/abeln/dotty/issues/9