-
Notifications
You must be signed in to change notification settings - Fork 1
feat(capture-sdk): add UI tests for AnalysisFragment #863
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -12,6 +12,7 @@ import com.nhaarman.mockitokotlin2.any | |||||||
| import com.nhaarman.mockitokotlin2.argumentCaptor | ||||||||
| import com.nhaarman.mockitokotlin2.atLeast | ||||||||
| import com.nhaarman.mockitokotlin2.atLeastOnce | ||||||||
| import com.nhaarman.mockitokotlin2.doAnswer | ||||||||
| import com.nhaarman.mockitokotlin2.doReturn | ||||||||
| import com.nhaarman.mockitokotlin2.eq | ||||||||
| import com.nhaarman.mockitokotlin2.mock | ||||||||
|
|
@@ -23,6 +24,7 @@ import io.mockk.Runs | |||||||
| import io.mockk.every | ||||||||
| import io.mockk.just | ||||||||
| import io.mockk.mockk | ||||||||
| import io.mockk.slot | ||||||||
|
||||||||
| import io.mockk.slot |
Copilot
AI
Nov 27, 2025
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.
The imports kotlin.invoke, kotlin.run, and kotlin.text.get appear to be unused in this file. These are typically auto-imported by Kotlin, and explicit imports are unnecessary. Consider removing them to keep the import section clean.
| import kotlin.invoke | |
| import kotlin.run | |
| import kotlin.text.get |
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.
There's an extra space before
funcreating inconsistent indentation. The line should start with 4 spaces (one indentation level) like other methods in this class, not 5 spaces.