You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: lib/src/integrationTest/kotlin/com/lemonappdev/konsist/core/declaration/koparent/KoParentDeclarationForKoSourceDeclarationProviderTest.kt
+35
Original file line number
Diff line number
Diff line change
@@ -302,6 +302,20 @@ class KoParentDeclarationForKoSourceDeclarationProviderTest {
302
302
null,
303
303
null,
304
304
),
305
+
arguments(
306
+
"class-with-parent-interface-with-the-same-name",
307
+
KoInterfaceDeclaration::class,
308
+
KoClassDeclaration::class,
309
+
null,
310
+
"com.samplepackage.SampleInterface.SampleName",
311
+
),
312
+
arguments(
313
+
"class-with-parent-class-with-the-same-name",
314
+
KoClassDeclaration::class,
315
+
KoInterfaceDeclaration::class,
316
+
null,
317
+
"com.samplepackage.SampleInterface.SampleName",
318
+
),
305
319
)
306
320
307
321
@Suppress("unused", "detekt.LongMethod")
@@ -364,6 +378,13 @@ class KoParentDeclarationForKoSourceDeclarationProviderTest {
0 commit comments