blob: fce032e10af930ba8ae0b403f9fb86dc4f6fdc47 [file]
// Inspired by:
// intellij-2022-new/testProject/community/android/android-test-framework/testSrc/com/android/tools/idea/testing/ProjectViewUtils.kt
// Project.dumpAndroidProjectView() -> PresentationData.toTestText() -> Icon.toText()
// -> this is ImageIconUIResource -> description ?: "ImageIconUIResource(?)"
fun Any.test() = when {
this is sun.swing.ImageIconUIResource -> description
else -> "emptyness"
}