1. ホーム
  2. kotlin

[解決済み] Kotlinでリソースからテキストファイルを読み込むには?

2022-05-18 05:35:32

質問

KotlinでSpekのテストを書きたい。このテストでは、HTMLファイルを src/test/resources フォルダからHTMLファイルを読み込む必要があります。どのようにそれを行うのですか?

class MySpec : Spek({

    describe("blah blah") {

        given("blah blah") {

            var fileContent : String = ""

            beforeEachTest {
                // How to read the file file.html in src/test/resources/html
                fileContent = ...  
            }

            it("should blah blah") {
                ...
            }
        }
    }
})

どのように解決するのですか?

val fileContent = MySpec::class.java.getResource("/html/file.html").readText()