Skip to content

Instantly share code, notes, and snippets.

@wzieba
Created July 20, 2020 13:38
Show Gist options
  • Save wzieba/d108843a69c3efa5c85c029bc549e0f1 to your computer and use it in GitHub Desktop.
Save wzieba/d108843a69c3efa5c85c029bc549e0f1 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()
assertThat(stringAssignedInCode).isEqualTo(stringStoredInFile)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment