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/phpunit/src/Runner/TestSuiteLoader.php')
-rw-r--r--vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php b/vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php
new file mode 100644
index 0000000..338486b
--- /dev/null
+++ b/vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php
@@ -0,0 +1,30 @@
+<?php
+/*
+ * This file is part of PHPUnit.
+ *
+ * (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.
+ */
+
+/**
+ * An interface to define how a test suite should be loaded.
+ */
+interface PHPUnit_Runner_TestSuiteLoader
+{
+ /**
+ * @param string $suiteClassName
+ * @param string $suiteClassFile
+ *
+ * @return ReflectionClass
+ */
+ public function load($suiteClassName, $suiteClassFile = '');
+
+ /**
+ * @param ReflectionClass $aClass
+ *
+ * @return ReflectionClass
+ */
+ public function reload(ReflectionClass $aClass);
+}