// CONFIGURE_LIBRARY: TestNG@testng(-|[0-9]|\.)*jar package testing import org.testng.annotations.Test abstract class KBase { @Test fun testFoo() { } } class KTest : KBase() { @Test fun testBar() { } } class KTest2 : KBase() { @Test fun testBaz() { } }