ฉันต้องการเขียนการทดสอบ Spek ใน Kotlin การทดสอบควรอ่านไฟล์ HTML จากsrc/test/resources
โฟลเดอร์ ทำอย่างไร?
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") {
...
}
}
}
})
this::class.java.classLoader.getResource("/html/file.html").readText()