Add tests#8
Open
KCeh wants to merge 4 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request adds comprehensive unit tests for the Snacky library and integrates test execution into the CI workflow. The PR introduces test coverage for core components including state management, duration configuration, animation specifications, and data models.
Key Changes:
- Added unit tests for
SnackyHostState,SnackyDuration,SnackyAnimationSpec, andDefaultSnackbarData - Configured test dependencies (JUnit, MockK, Kotlinx Coroutines Test)
- Added test execution job to CI workflow with detailed test logging configuration
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
snacky/src/test/java/com/infinum/snacky/SnackyHostStateTest.kt |
Tests for snackbar host state management, queuing, callbacks, and duration handling |
snacky/src/test/java/com/infinum/snacky/SnackyDurationTest.kt |
Tests for all duration types and validation logic |
snacky/src/test/java/com/infinum/snacky/SnackyAnimationSpecTest.kt |
Tests for animation configuration and default values |
snacky/src/test/java/com/infinum/snacky/DefaultSnackbarDataTest.kt |
Tests for default snackbar data model properties |
snacky/build.gradle.kts |
Added test dependencies and configured detailed test logging output |
gradle/libs.versions.toml |
Added version declarations for test libraries (JUnit, MockK, Kotlinx Coroutines Test) |
.github/workflows/CI.yml |
Added unit test job to CI workflow with gradle caching |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
I added tests to ensure code quailty. Test check is also added to CI
Changes
Type
Additional information
Description
Checklist
Additional notes