notEqualTo

fun <T> notEqualTo(compareWith: () -> T, message: (T) -> String = { "Must not be equal to '$compareWith()'" }): GenericRule<T>
fun <T> notEqualTo(compareWith: () -> T, message: String = "Must not be equal to '"): Rule<T>
fun <T> notEqualTo(compareWith: T, message: String = "Must not be equal to '"): Rule<T>