Skip to content

Instantly share code, notes, and snippets.

@wzieba
Created July 26, 2020 12:52
Show Gist options
  • Save wzieba/deeb70028dc16a7772117521a8fc6cc3 to your computer and use it in GitHub Desktop.
Save wzieba/deeb70028dc16a7772117521a8fc6cc3 to your computer and use it in GitHub Desktop.
fun main() {
val stringAssignedInCode = "foo\nbar"
val stringStoredInFile: String = this::class.java.classLoader.getResource("saved_line")!!.readText()
.replace("\\n", "\n")
assertThat(stringAssignedInCode).isEqualTo(stringStoredInFile)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment