test_neq

Declaration

test_neq :: fn (got: string, not_expected: string, loc := #call_location)
test_neq :: fn (got: s64, not_expected: s64, loc := #call_location)
test_neq :: fn (got: u64, not_expected: u64, loc := #call_location)
test_neq :: fn (got: f32, not_expected: f32, loc := #call_location)
test_neq :: fn (got: f64, not_expected: f64, loc := #call_location)
test_neq :: fn (got: *u8, not_expected: *u8, loc := #call_location)

Description

Test whether got value is not equal to not_expected value.

Arguments

  • got Value to be checked.

  • not_expected Not expected value of got.

  • loc Optional call side location.

Declared in: test.bl