<@U0KBF8D7V> Have you tried the `kotlin-allopen` p...
# android
m
@Paul Woitaschek Have you tried the
kotlin-allopen
plugin?
p
That will make everything all-open, not just the tests
m
allopen is only for classes with an annotation that you specify, so you could annotate only the types you want to mock
p
Then I could just Mark them as open
I don't see the benefit there
g
@Paul Woitaschek You also must mark all the mocked methods as open, allopen can help with it
s
@Paul Woitaschek there's no difference if all your data classes are open or not, it will only work through reflection, you still can't inherit from it in your normal code