diff --git a/shared/src/test/kotlin/org/splitties/compose/oclock/sample/watchfaces/hansie/HansieClockTest.kt b/shared/src/test/kotlin/org/splitties/compose/oclock/sample/watchfaces/hansie/HansieClockTest.kt new file mode 100644 index 0000000..572ed54 --- /dev/null +++ b/shared/src/test/kotlin/org/splitties/compose/oclock/sample/watchfaces/hansie/HansieClockTest.kt @@ -0,0 +1,26 @@ +package org.splitties.compose.oclock.sample.watchfaces.hansie + +import androidx.compose.runtime.Composable +import org.junit.Test +import org.robolectric.annotation.Config +import org.splitties.compose.oclock.sample.watchfaces.DeviceClockScreenshotTest +import org.splitties.compose.oclock.sample.watchfaces.WearDevice + +class HansieClockTest(device: WearDevice) : DeviceClockScreenshotTest(device) { + @Composable + override fun Clock() { + HansieClock() + } + + @Config(qualifiers = "+fr-rFR") + @Test + fun french() = runTest { + Clock() + } + + @Config(qualifiers = "+ja") + @Test + fun japanese() = runTest { + Clock() + } +} \ No newline at end of file diff --git a/shared/src/test/screenshots/HansieClockTest_galaxy_watch_5_english[1].png b/shared/src/test/screenshots/HansieClockTest_galaxy_watch_5_english[1].png new file mode 100644 index 0000000..1b947bc Binary files /dev/null and b/shared/src/test/screenshots/HansieClockTest_galaxy_watch_5_english[1].png differ diff --git a/shared/src/test/screenshots/HansieClockTest_galaxy_watch_5_french[1].png b/shared/src/test/screenshots/HansieClockTest_galaxy_watch_5_french[1].png new file mode 100644 index 0000000..d6699d1 Binary files /dev/null and b/shared/src/test/screenshots/HansieClockTest_galaxy_watch_5_french[1].png differ diff --git a/shared/src/test/screenshots/HansieClockTest_galaxy_watch_5_japanese[1].png b/shared/src/test/screenshots/HansieClockTest_galaxy_watch_5_japanese[1].png new file mode 100644 index 0000000..671d35d Binary files /dev/null and b/shared/src/test/screenshots/HansieClockTest_galaxy_watch_5_japanese[1].png differ diff --git a/shared/src/test/screenshots/HansieClockTest_pixelwatch_english[2].png b/shared/src/test/screenshots/HansieClockTest_pixelwatch_english[2].png new file mode 100644 index 0000000..2b4820c Binary files /dev/null and b/shared/src/test/screenshots/HansieClockTest_pixelwatch_english[2].png differ diff --git a/shared/src/test/screenshots/HansieClockTest_pixelwatch_french[2].png b/shared/src/test/screenshots/HansieClockTest_pixelwatch_french[2].png new file mode 100644 index 0000000..850978e Binary files /dev/null and b/shared/src/test/screenshots/HansieClockTest_pixelwatch_french[2].png differ diff --git a/shared/src/test/screenshots/HansieClockTest_pixelwatch_japanese[2].png b/shared/src/test/screenshots/HansieClockTest_pixelwatch_japanese[2].png new file mode 100644 index 0000000..e3aea76 Binary files /dev/null and b/shared/src/test/screenshots/HansieClockTest_pixelwatch_japanese[2].png differ diff --git a/shared/src/test/screenshots/HansieClockTest_ticwatch_pro_5_english[0].png b/shared/src/test/screenshots/HansieClockTest_ticwatch_pro_5_english[0].png new file mode 100644 index 0000000..1c46ef9 Binary files /dev/null and b/shared/src/test/screenshots/HansieClockTest_ticwatch_pro_5_english[0].png differ diff --git a/shared/src/test/screenshots/HansieClockTest_ticwatch_pro_5_french[0].png b/shared/src/test/screenshots/HansieClockTest_ticwatch_pro_5_french[0].png new file mode 100644 index 0000000..b660df5 Binary files /dev/null and b/shared/src/test/screenshots/HansieClockTest_ticwatch_pro_5_french[0].png differ diff --git a/shared/src/test/screenshots/HansieClockTest_ticwatch_pro_5_japanese[0].png b/shared/src/test/screenshots/HansieClockTest_ticwatch_pro_5_japanese[0].png new file mode 100644 index 0000000..208db5c Binary files /dev/null and b/shared/src/test/screenshots/HansieClockTest_ticwatch_pro_5_japanese[0].png differ