You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Kover doesn't reflect my test changes whenever I use kotlinFixtures in my test class to generate fakes.
Errors
No stack traces detected
Expected behavior
Kover should reflect the test cases for test classes using the mentioned library
Reproducer
The codebase is private but it can be easily reproducible by simply using kotlinFixture for generating fakes in a test class.
classProfileViewModelTest {
privateval fixture = kotlinFixture()
privateval fakeDesc = fixture<Desc>() // Desc can be any data class
@Test
funtestDesc() {
assertNotNull(fakeDesc.name)
}
}
Reports
Kover tests passed 100%
Environment
Kover Gradle Plugin version: [1.9.21]
Gradle version: [e.g. 8.3]
Kotlin project type: [Kotlin/Android]
Coverage Toolset [Kover]
The text was updated successfully, but these errors were encountered:
Describe the bug
Kover doesn't reflect my test changes whenever I use kotlinFixtures in my test class to generate fakes.
Errors
No stack traces detected
Expected behavior
Kover should reflect the test cases for test classes using the mentioned library
Reproducer
The codebase is private but it can be easily reproducible by simply using kotlinFixture for generating fakes in a test class.
Reports
Kover tests passed 100%
Environment
The text was updated successfully, but these errors were encountered: