-
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use typeOf instead as key of KClass in InstanceKeeper#getOrCreate #169
Conversation
WalkthroughThe recent changes to the Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- instance-keeper/src/commonMain/kotlin/com/arkivanov/essenty/instancekeeper/InstanceKeeperExt.kt (3 hunks)
- instance-keeper/src/commonTest/kotlin/com/arkivanov/essenty/instancekeeper/InstanceKeeperExtTest.kt (2 hunks)
Additional comments not posted (10)
instance-keeper/src/commonMain/kotlin/com/arkivanov/essenty/instancekeeper/InstanceKeeperExt.kt (2)
23-26
: Change to usetypeOf<T>()
as a key is correctly implemented.
39-45
: Change to usetypeOf<T>()
as a key ingetOrCreateSimple
is correctly implemented.instance-keeper/src/commonTest/kotlin/com/arkivanov/essenty/instancekeeper/InstanceKeeperExtTest.kt (8)
13-15
: Test forgetOrCreate
with the same key returning the same instance is correctly implemented.
21-25
: Test forgetOrCreate
with different keys returning a new instance is correctly implemented.
29-31
: Test forgetOrCreate
with the same type returning the same instance is correctly implemented.
37-41
: Test forgetOrCreate
with different types returning a new instance is correctly implemented.
45-47
: Test forgetOrCreateSimple
with the same key returning the same instance is correctly implemented.
53-57
: Test forgetOrCreateSimple
with different keys returning a new instance is correctly implemented.
61-63
: Test forgetOrCreateSimple
with the same type returning the same instance is correctly implemented.
69-73
: Test forgetOrCreateSimple
with different types returning a new instance is correctly implemented.
Summary by CodeRabbit
Enhancements
Testing