Я хочу написать тест Spek в Котлине. Тест должен прочитать 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") {
...
}
}
}
})