curioustechizen
11/29/2024, 7:44 AMcommonMain
that uses the APIs for accessing resources from non-compose code:
val message = getString(Res.string.my_message)
Should I expect that running this in commonTest
works?curioustechizen
11/29/2024, 8:36 AMcommonMain
. Should I be able to run this on host side unit tests?
@Test fun testMessage() = runTest {
assertEquals("Hello world", getString(Res.string.my_message) )
}
curioustechizen
11/29/2024, 10:40 AM