最佳答案
我想在 Kotlin 写一个 Spek 测试。测试应该从 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") {
...
}
}
}
})