-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and validate all screenshots and composable previews
- Loading branch information
1 parent
59dfba4
commit 52065bc
Showing
16 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+131 KB
...ts/AboutScreenScreenshotTestKt/AboutScreenUIPreviewTest_da39a3ee_da39a3ee_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+102 KB
.../ActorDetailsScreenshotTestKt/ActorDetailsUIPreviewTest_da39a3ee_da39a3ee_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+53.2 KB
...itesScreenScreenshotTestKt/FavoritesScreenUIPreviewTest_da39a3ee_da39a3ee_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+101 KB
...ests/HomeScreenScreenshotTestKt/HomeScreenUIPreviewTest_da39a3ee_da39a3ee_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+117 KB
...s/MovieDetailsScreenshotTestKt/MovieDetailUIPreviewTest_da39a3ee_da39a3ee_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+30.6 KB
...tScreenshotTestKt/OptionsModalSheetContentUIPreviewTest_da39a3ee_da39a3ee_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+60.2 KB
...sScreenshotTestKt/SheetContentActorDetailsUIPreviewTest_da39a3ee_da39a3ee_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+57.8 KB
...sScreenshotTestKt/SheetContentMovieDetailsUIPreviewTest_da39a3ee_da39a3ee_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions
11
app/src/screenshotTest/kotlin/AboutScreenScreenshotTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.developersbreach.composeactors.screenshotTests | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import com.developersbreach.composeactors.ui.screens.about.AboutScreenLightPreview | ||
|
||
@Preview | ||
@Composable | ||
private fun AboutScreenUIPreviewTest() { | ||
AboutScreenLightPreview() | ||
} |
12 changes: 12 additions & 0 deletions
12
app/src/screenshotTest/kotlin/ActorDetailsScreenshotTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.developersbreach.composeactors.screenshotTests | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import com.developersbreach.composeactors.ui.screens.actorDetails.ActorDetailsUILightPreview | ||
|
||
|
||
@Preview | ||
@Composable | ||
private fun ActorDetailsUIPreviewTest() { | ||
ActorDetailsUILightPreview() | ||
} |
12 changes: 12 additions & 0 deletions
12
app/src/screenshotTest/kotlin/FavoritesScreenScreenshotTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.developersbreach.composeactors.screenshotTests | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import com.developersbreach.composeactors.ui.screens.favorites.FavoriteScreenUILightPreview | ||
|
||
|
||
@Preview | ||
@Composable | ||
private fun FavoritesScreenUIPreviewTest() { | ||
FavoriteScreenUILightPreview() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.developersbreach.composeactors.screenshotTests | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import com.developersbreach.composeactors.ui.screens.home.HomeScreenUILightPreview | ||
|
||
@Preview | ||
@Composable | ||
private fun HomeScreenUIPreviewTest() { | ||
HomeScreenUILightPreview() | ||
} |
11 changes: 11 additions & 0 deletions
11
app/src/screenshotTest/kotlin/MovieDetailsScreenshotTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.developersbreach.composeactors.screenshotTests | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import com.developersbreach.composeactors.ui.screens.movieDetail.MovieDetailsUILightPreview | ||
|
||
@Preview | ||
@Composable | ||
private fun MovieDetailUIPreviewTest() { | ||
MovieDetailsUILightPreview() | ||
} |
12 changes: 12 additions & 0 deletions
12
app/src/screenshotTest/kotlin/OptionsModalSheetContentScreenshotTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.developersbreach.composeactors.screenshotTests | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import com.developersbreach.composeactors.ui.screens.modalSheets.OptionsModalSheetContentLightPreview | ||
|
||
|
||
@Preview | ||
@Composable | ||
private fun OptionsModalSheetContentUIPreviewTest() { | ||
OptionsModalSheetContentLightPreview() | ||
} |
11 changes: 11 additions & 0 deletions
11
app/src/screenshotTest/kotlin/SheetContentActorDetailsScreenshotTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.developersbreach.composeactors.screenshotTests | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import com.developersbreach.composeactors.ui.screens.modalSheets.SheetContentActorDetailsLightPreview | ||
|
||
@Preview | ||
@Composable | ||
private fun SheetContentActorDetailsUIPreviewTest() { | ||
SheetContentActorDetailsLightPreview() | ||
} |
11 changes: 11 additions & 0 deletions
11
app/src/screenshotTest/kotlin/SheetContentMovieDetailsScreenshotTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.developersbreach.composeactors.screenshotTests | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.tooling.preview.Preview | ||
import com.developersbreach.composeactors.ui.screens.modalSheets.SheetContentMovieDetailsLightPreview | ||
|
||
@Preview | ||
@Composable | ||
private fun SheetContentMovieDetailsUIPreviewTest() { | ||
SheetContentMovieDetailsLightPreview() | ||
} |