You are here

DependencyFailureTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/_files/DependencyFailureTest.php

File

vendor/phpunit/phpunit/tests/_files/DependencyFailureTest.php
View source
<?php

class DependencyFailureTest extends PHPUnit_Framework_TestCase {
  public function testOne() {
    $this
      ->fail();
  }

  /**
   * @depends testOne
   */
  public function testTwo() {
  }

  /**
   * @depends testTwo
   */
  public function testThree() {
  }

}

Classes