2 |
3 | {{percent}}% covered ({{level}})
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mtownsend5512/progress/8100c3b80a8d66f34f67384e828075fa41cdd5cb/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 |
11 | namespace SebastianBergmann\CodeCoverage\Report\Xml;
12 |
13 | class Directory extends Node
14 | {
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/BankAccount-text.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 | Code Coverage Report:
4 | %s
5 |
6 | Summary:
7 | Classes: 0.00% (0/1)
8 | Methods: 75.00% (3/4)
9 | Lines: 50.00% (5/10)
10 |
11 | BankAccount
12 | Methods: 75.00% ( 3/ 4) Lines: 50.00% ( 5/ 10)
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageClassExtendedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageClassTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesWhitespaceTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPrivateTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageNotProtectedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoveragePrivateTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageProtectedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php:
--------------------------------------------------------------------------------
1 |
10 | */
11 | public function testSomething()
12 | {
13 | $o = new Foo\CoveredClass;
14 | $o->publicMethod();
15 | }
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassPublicTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageMethodTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPrivateTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotProtectedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePrivateTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageProtectedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php:
--------------------------------------------------------------------------------
1 |
22 | */
23 | public function testThree()
24 | {
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/class-with-anonymous-function-text.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 | Code Coverage Report:
4 | %s
5 |
6 | Summary:
7 | Classes: 0.00% (0/1)
8 | Methods: 50.00% (1/2)
9 | Lines: 87.50% (7/8)
10 |
11 | CoveredClassWithAnonymousFunctionInStaticMethod
12 | Methods: 50.00% ( 1/ 2) Lines: 80.00% ( 4/ 5)
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/ignored-lines-text.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 | Code Coverage Report:%w
4 | %s
5 | %w
6 | Summary:%w
7 | Classes: (0/0)
8 | Methods: (0/0)
9 | Lines: 50.00% (1/2)
10 |
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/source_with_class_and_anonymous_function.php:
--------------------------------------------------------------------------------
1 | method_in_anonymous_class();
11 | }
12 |
13 | public function methodTwo() {
14 | return false;
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-token-stream/tests/_fixture/closure.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | require __DIR__ . '/../vendor/autoload.php';
11 |
12 | define(
13 | 'TEST_FILES_PATH',
14 | __DIR__ . DIRECTORY_SEPARATOR . '_fixture' . DIRECTORY_SEPARATOR
15 | );
16 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /vendor
5 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | Please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/.github/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/.github/CONTRIBUTING.md) for details on how to contribute to this project.
2 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/README.md:
--------------------------------------------------------------------------------
1 | [](https://packagist.org/packages/phpunit/phpunit-mock-objects)
2 | [](https://php.net/)
3 | [](https://phpunit.de/build-status.html)
4 |
5 | # phpunit-mock-objects
6 |
7 | **phpunit-mock-objects** is the default mock object library for PHPUnit.
8 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Exception/BadMethodCallException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\MockObject;
11 |
12 | class BadMethodCallException extends \BadMethodCallException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Exception/Exception.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\MockObject;
11 |
12 | /**
13 | * Interface for exceptions used by PHPUnit_MockObject.
14 | */
15 | interface Exception
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Exception/RuntimeException.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | namespace PHPUnit\Framework\MockObject;
11 |
12 | class RuntimeException extends \RuntimeException implements Exception
13 | {
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/ForwardCompatibility/MockObject.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 |
11 | namespace PHPUnit\Framework\MockObject;
12 |
13 | use PHPUnit_Framework_MockObject_MockObject;
14 |
15 | interface MockObject extends PHPUnit_Framework_MockObject_MockObject
16 | {
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/deprecation.tpl.dist:
--------------------------------------------------------------------------------
1 |
2 | @trigger_error({deprecation}, E_USER_DEPRECATED);
3 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_class_method.tpl.dist:
--------------------------------------------------------------------------------
1 |
2 | public function method()
3 | {
4 | $any = new \PHPUnit\Framework\MockObject\Matcher\AnyInvokedCount;
5 | $expects = $this->expects($any);
6 | return call_user_func_array(array($expects, 'method'), func_get_args());
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_clone.tpl.dist:
--------------------------------------------------------------------------------
1 | public function __clone()
2 | {
3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker();
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_static_method.tpl.dist:
--------------------------------------------------------------------------------
1 |
2 | {modifier} function {reference}{method_name}({arguments_decl}){return_delim}{return_type}
3 | {
4 | throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object');
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/trait_class.tpl.dist:
--------------------------------------------------------------------------------
1 | {prologue}class {class_name}
2 | {
3 | use {trait_name};
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/unmocked_clone.tpl.dist:
--------------------------------------------------------------------------------
1 | public function __clone()
2 | {
3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker();
4 | parent::__clone();
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/wsdl_class.tpl.dist:
--------------------------------------------------------------------------------
1 | {namespace}class {class_name} extends \SoapClient
2 | {
3 | public function __construct($wsdl, array $options)
4 | {
5 | parent::__construct('{wsdl}', $options);
6 | }
7 | {methods}}
8 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/wsdl_method.tpl.dist:
--------------------------------------------------------------------------------
1 |
2 | public function {method_name}({arguments})
3 | {
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractMockTestClass.php:
--------------------------------------------------------------------------------
1 | $value) {
12 | $this->{$key} = $value;
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/tests/_fixture/ClassWithSelfTypeHint.php:
--------------------------------------------------------------------------------
1 | doSomethingElse();
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php:
--------------------------------------------------------------------------------
1 | constructorCalled = true;
9 | }
10 |
11 | public function doSomething()
12 | {
13 | }
14 |
15 | public function doAnotherThing()
16 | {
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/tests/_fixture/SingletonClass.php:
--------------------------------------------------------------------------------
1 |
2 |