notToBeTheInstance    
  Expects that the subject of this expectation is not the same instance as expected.
Return
an Expect for the subject of this expectation.
Since
0.17.0
Samples
// holds because notToBeTheInstance is based on identity, use notToEqual for equality
expect(listOf(2)) notToBeTheInstance listOf(2)
fails { // because notToBeTheInstance is based on identity, use notToEqual for equality
    val list = listOf(3)
    expect(list) notToBeTheInstance list
}