1 package androidx.sqlite.inspection.test
2 
3 import kotlin.Long
4 import kotlin.String
5 
6 interface TestEntity {
7     val id: Long
8 
9     val value: String
10 
11     data class Impl(override val id: Long, override val value: String) : TestEntity {
toStringnull12         override fun toString(): String =
13             """
14     |TestEntity.Impl [
15     |  id: $id
16     |  value: $value
17     |]
18     """
19                 .trimMargin()
20     }
21 }
22