Non-final Kotlin classes inheriting Swift/Objective-C types aren't supported yet, so it is not possible to declare a complex class hierarchy inheriting Swift/Objective-C types.
Any plans to remove this restriction? At least for the classes in the same module?
s
svyatoslav.scherbina
05/13/2019, 8:12 AM
No specific plans yet.
Why do you need this?
t
tapchicoma
05/13/2019, 8:28 AM
My particular use-case is base
abstract class
that extends
XCTest
on iOS target and overrides `fun setUp()`/`fun tearDown()` to provide common tests setup. Then each test class doesn't need to add setup/teardown methods.