You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
349 B

package org.jetbrains.compose.resources
internal class TestResourceReader : ResourceReader {
private val readPathsList = mutableListOf<String>()
val readPaths: List<String> get() = readPathsList
override suspend fun read(path: String): ByteArray {
readPathsList.add(path)
return DefaultResourceReader.read(path)
}
}