[SLC] implement infrastructure for light class hierarchy tests

This commit is contained in:
Dmitrii Gridin
2022-12-07 15:18:01 +01:00
committed by Space Team
parent feff03894f
commit b2c0a37050
38 changed files with 2233 additions and 13 deletions
@@ -0,0 +1,10 @@
package abc
interface SingleInterface
interface BaseInterface1
interface BaseInterface2
interface InterfaceWithBase : BaseInterface1, BaseInterface2
interface InterfaceWithTransitive : InterfaceWithBase