Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / StatusTest.php
diff --git a/vendor/phpunit/phpunit/tests/_files/StatusTest.php b/vendor/phpunit/phpunit/tests/_files/StatusTest.php
new file mode 100644 (file)
index 0000000..a267bb7
--- /dev/null
@@ -0,0 +1,32 @@
+<?php
+class StatusTest extends PHPUnit_Framework_TestCase
+{
+    public function testSuccess()
+    {
+        $this->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()
+    {
+    }
+}