I have a test, I want to assert its result:
assertThat(cofmanString, new IsEqualIgnoringCase(FileUtils.readFileToString(new File("/Users/myFile.txt"))));
in Intellij I see the strings are identical including tabs and newlines
actual:
but the test fails like this:
which hamcrest matcher can i use to compare the strings and succeed?