10
Kotlin'deki kaynaklardan bir metin dosyası nasıl okunur?
Kotlin'de bir Spek testi yazmak istiyorum. Test, src/test/resourcesklasörden bir HTML dosyası okumalıdır . Nasıl yapılır? 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") { …
103
kotlin