The value to test.
The value it should NOT be equal to.
The file name that the assert failed in. Should be left as default.
The file line that the assert failed in. Should be left as default.
If values are NOT equal, will throw an AssertError with unexpected and actual values.
// Will throw an exception like "AssertError@example.d(6): <3> expected to NOT equal <3>." int z = 3; z.shouldNotEqual(3);
Used to assert that one value is NOT equal to another value.