ef3ba5f0b1
Fixes problem with INFORMATION highlight type in batch mode (IDEA 181). It's no more required to report INFORMATIONs in unit tests in batch.
10 lines
337 B
Kotlin
Vendored
10 lines
337 B
Kotlin
Vendored
fun foo() {
|
|
1.equals(1) // YES
|
|
!1.equals(2) // YES
|
|
1.compareTo(1) // NO
|
|
1.compareTo(1) == 0 // NO
|
|
2.compareTo(1) > 0 // YES
|
|
0 >= 1.compareTo(2) // YES
|
|
2.plus(2) // YES (information) -- not reported in batch
|
|
2.times(2) // YES (information) -- not reported in batch
|
|
} |