Viewing File: /home/ubuntu/code_review/arcanist/src/unit/engine/phutil/testcase/PhutilTestCaseTestCase.php

<?php

/**
 * Test for @{class:PhutilUnitTestEngineTestCase}.
 */
final class PhutilTestCaseTestCase extends PhutilTestCase {

  public function testFail() {
    $this->assertFailure(pht('This test is expected to fail.'));
  }

  public function testSkip() {
    $this->assertSkipped(pht('This test is expected to skip.'));
  }

}
Back to Directory File Manager