Igor Wojda

Results 73 comments of Igor Wojda

We are taking a look at this @marcqtan

Same with me

I think aising a `kotlin.test` the issue would be a preferable thing to do. I am not that familiar with `kotlin.test` itself, so I will leave it up to you.

@javatarz test still fails for me with the wrong exception. Here is my dependency: ``` testImplementation ("org.amshove.kluent:kluent-android:1.56") { exclude group: 'org.jetbrains.kotlin', module: 'kotlin-reflect' exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8' } ```

You can easily reproduce this with my project. 1. Checkout this https://github.com/igorwojda/kotlin-coding-puzzle 2. Open in Android Studio 3. Open [MaxOccurrentChar.kt](https://github.com/igorwojda/kotlin-coding-puzzle/blob/master/app/src/test/java/com/igorwojda/string/maxchar/MaxOccurrentChar.kt) 4. Replace file content with this ``` package com.igorwojda.string.maxchar import...

Closing as the project was migrated to [koin](https://insert-koin.io/)

Thx for the contribution

I am not sure which solution are you referring to. Maby something has changed over time, but this test works fine for all solutions. ``` @Test fun `'#abba' a palindrome`()...