Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/phpunit/php-token-stream/tests/TokenTest.php')
-rw-r--r--vendor/phpunit/php-token-stream/tests/TokenTest.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/phpunit/php-token-stream/tests/TokenTest.php b/vendor/phpunit/php-token-stream/tests/TokenTest.php
new file mode 100644
index 0000000..e4bbb80
--- /dev/null
+++ b/vendor/phpunit/php-token-stream/tests/TokenTest.php
@@ -0,0 +1,32 @@
+<?php
+/*
+ * This file is part of php-token-stream.
+ *
+ * (c) Sebastian Bergmann <sebastian@phpunit.de>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+use PHPUnit\Framework\TestCase;
+
+class PHP_TokenTest extends TestCase
+{
+ /**
+ * @covers PHP_Token::__construct
+ * @covers PHP_Token::__toString
+ */
+ public function testToString()
+ {
+ $this->markTestIncomplete();
+ }
+
+ /**
+ * @covers PHP_Token::__construct
+ * @covers PHP_Token::getLine
+ */
+ public function testGetLine()
+ {
+ $this->markTestIncomplete();
+ }
+}