public function assertNotSame()

in src/Assert.hack [63:78]


  public function assertNotSame(
    mixed $expected,
    mixed $actual,
    string $message = '',
  ): void {
    if ($expected !== $actual) {
      return;
    }
    throw new ExpectationFailedException(
      Str\format(
        "%s\nFailed asserting that values differed; both are %s",
        $message,
        \var_export($actual, true),
      ),
    );
  }