From bdabcc7255e0aa22f1745276b49534cce2b14447 Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Sun, 7 Apr 2019 11:37:10 +0200 Subject: [PATCH] Removed TODO about AssertThatBinaryExpressionIsTrueOrFalse. --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index 060194f..5f4df89 100644 --- a/README.md +++ b/README.md @@ -144,16 +144,6 @@ The IntelliJ framework actually uses the JUnit 3 TestCase for plugin testing and Feel free to use the code (in package de.platon42.intellij.jupiter) for your projects (with attribution). ## TODO -- AssertThatBinaryExpressionIsTrueOrFalse - ``` - from: assertThat(actual == expected).isTrue(); - to: assertThat(actual).isEqualTo(expected); (for primitive types) - to: assertThat(actual).isSameAs(expected); (for objects) - - from: assertThat(actual != expected).isFalse(); - to: assertThat(actual).isNotEqualTo(expected); (for primitive types) - to: assertThat(actual).isNotSameAs(expected); (for objects) - ``` - AssertThatJava8OptionalContains ``` from: assertThat(Optional.of("foo").get()).isEqualTo("foo");