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,6 @@
<html>
<body>
This inspection reports assert boolean function calls replaceable with assert equality function.
Example: <b>assertTrue(a == b)</b> can be replaced by <b>assertEquals(a, b)</b>.
</body>
</html>