public function assertFalse()

in src/Assert.hack [175:186]


  public function assertFalse(mixed $condition, string $message = ''): void {
    if ($condition === false) {
      return;
    }
    throw new ExpectationFailedException(
      Str\format(
        "%s\nFailed asserting that %s is false",
        $message,
        \var_export($condition, true),
      ),
    );
  }