Add "Replace assertBoolean() with assertEquals() inspection"

#KT-23445 Fixed
This commit is contained in:
kenji tomita
2018-08-05 05:30:15 +03:00
committed by Mikhail Glukhikh
parent e92d3998de
commit 443b1834bc
25 changed files with 324 additions and 0 deletions
@@ -0,0 +1,9 @@
// RUNTIME_WITH_KOTLIN_TEST
// PROBLEM: none
import kotlin.test.*
fun foo() {
val isA = false
assertFalse<caret>(isA)
}