Skip to content

Instantly share code, notes, and snippets.

@fbcbl
Created September 25, 2017 09:50
Show Gist options
  • Save fbcbl/508ca04a3c38440c8351d484a3e68a76 to your computer and use it in GitHub Desktop.
Save fbcbl/508ca04a3c38440c8351d484a3e68a76 to your computer and use it in GitHub Desktop.
Kotlin Testing Pt 1 Classes Open
open class User(
private val firstName: String,
private val lastName: String) {
open fun fullName(): String = "$firstName $lastName"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment