Morten Friesgaard

Results 21 comments of Morten Friesgaard

Seems like it only picks up test file instead the correct project files, this happens for both my project and the sample project I made. This could be due to...

Could be a Kotlin related issue. What do you use, IntelliJ Idea?

Yeah of course, it think the installed java version does not match the setup. If you look in `app/build.gradle.kt`, you change the project version ``` compileOptions { sourceCompatibility = JavaVersion.VERSION_17...

`Print the report` emphasis the real problem with package scanning. It does not pick up `DataClass` and `NestedDataClass` only the `TestObj` within the test folder.

So the package is wrong? This does not fail for me `assertEquals("com.android.equals.verifier.lib.sub", this::class.java.packageName)`, but gives the same result.

> Our messages crossed, I think :) > > > So the package is wrong? This does not fail for me `assertEquals("com.android.equals.verifier.lib.sub", this::class.java.packageName)`, but gives the same result. > >...

Thanks for looking into this. Keep up the good work with this library 🥇

Wow nice, and it works. Now I actually get some real errors 😊 However, it seems like only the last vararg options (`ScanOption.except(predicate)`) is in effect, I'll have to take...

I combined all my predicates into one, tests runs and it has located some issues. Nice to see it finally running 👌