1<?php
2class DependencyFailureTest extends PHPUnit_Framework_TestCase
3{
4    public function testOne()
5    {
6        $this->fail();
7    }
8
9    /**
10     * @depends testOne
11     */
12    public function testTwo()
13    {
14    }
15
16    /**
17     * @depends !clone testTwo
18     */
19    public function testThree()
20    {
21    }
22
23    /**
24     * @depends clone testOne
25     */
26    public function testFour()
27    {
28    }
29}
30