public function assertTrue()

in src/Assert.hack [162:173]


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