Je veux écrire un test Spek en Kotlin. Le test doit lire un fichier HTML à partir de la page src/test/resources
dossier. Comment faire ?
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") {
...
}
}
}
})