私はCLAVINのインストールの指示に従っていました。CLAVIN パッケージをビルドしようとすると、TextUtilsTest の後に「Build Failure」が表示され、ファイルから抽出されたコンテンツが予期される文字列とまったく同じであるかどうかがチェックされます。これがTESTのコードで、これがfile からコンテンツを読み取るメソッドです。これらは、その失敗の背後にある詳細です。
<failure message="wrong output from fileToString expected:<Line1 word2[ Line2 word2 word3] Line3> but was:<Line1 word2[ Line2 word2 word3 ] Line3>" type="org.junit.ComparisonFailure"><![CDATA[org.junit.ComparisonFailure: wrong output from fileToString expected:<Line1 word2[
Line2 word2 word3]
Line3> but was:<Line1 word2[
Line2 word2 word3
]
Line3>
at org.junit.Assert.assertEquals(Assert.java:115)
at com.bericotech.clavin.util.TextUtilsTest.testFileToString(TextUtilsTest.java:56)
]]></failure>
入力ファイルを確認したところ、内容は提供された文字列とまったく同じです。問題はテキスト ファイルのエンコーディングにあるのではないかと疑い、他のすべてのエンコーディングを試しましたが、事態は悪化するだけでした。例外を無視して、次のインストール手順に進むことをお勧めしますか?