X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fphpunit%2Fphpunit%2Ftests%2F_files%2FStatusTest.php;fp=vendor%2Fphpunit%2Fphpunit%2Ftests%2F_files%2FStatusTest.php;h=a267bb727cef63b901ce6cd4fcab98be09b18966;hp=0000000000000000000000000000000000000000;hb=eba34333e3c89f208d2f72fa91351ad019a71583;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae diff --git a/vendor/phpunit/phpunit/tests/_files/StatusTest.php b/vendor/phpunit/phpunit/tests/_files/StatusTest.php new file mode 100644 index 000000000..a267bb727 --- /dev/null +++ b/vendor/phpunit/phpunit/tests/_files/StatusTest.php @@ -0,0 +1,32 @@ +assertTrue(true); + } + + public function testFailure() + { + $this->assertTrue(false); + } + + public function testError() + { + throw new \Exception; + } + + public function testIncomplete() + { + $this->markTestIncomplete(); + } + + public function testSkipped() + { + $this->markTestSkipped(); + } + + public function testRisky() + { + } +}