Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / Regression / GitHub / 1471 / Issue1471Test.php
diff --git a/vendor/phpunit/phpunit/tests/Regression/GitHub/1471/Issue1471Test.php b/vendor/phpunit/phpunit/tests/Regression/GitHub/1471/Issue1471Test.php
new file mode 100644 (file)
index 0000000..28f1274
--- /dev/null
@@ -0,0 +1,12 @@
+<?php
+class Issue1471Test extends PHPUnit_Framework_TestCase
+{
+    public function testFailure()
+    {
+        $this->expectOutputString('*');
+
+        print '*';
+
+        $this->assertTrue(false);
+    }
+}