Denys
11/17/2023, 2:47 PMKonsist
.scopeFromProject()
.classes()
.withAllParentsOf(AppCompatActivity::class)
.assertTrue { it.name.endsWith("Activity") }
But the problem is that all my Activities are inherited not from AppCompatActivity, but from BaseActivity, which in turn is already inherited from AppCompatActivity. And this test does not work correctly (Tell me, is there a solution to this problem?igor.wojda
11/18/2023, 2:30 PM