├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml.dist └── vendor ├── autoload.php ├── bin └── phpunit ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── include_paths.php └── installed.json ├── phpunit ├── php-code-coverage │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── scripts │ │ ├── auto_append.php │ │ └── auto_prepend.php │ ├── src │ │ ├── CodeCoverage.php │ │ └── CodeCoverage │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ ├── HHVM.php │ │ │ └── Xdebug.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ └── UnintentionallyCoveredCode.php │ │ │ ├── Filter.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Crap4j.php │ │ │ ├── Factory.php │ │ │ ├── HTML.php │ │ │ ├── HTML │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── nv.d3.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── holder.js │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── respond.min.js │ │ │ │ │ └── method_item.html.dist │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── PHP.php │ │ │ ├── Text.php │ │ │ ├── XML.php │ │ │ └── XML │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ ├── File │ │ │ │ ├── Coverage.php │ │ │ │ ├── Method.php │ │ │ │ ├── Report.php │ │ │ │ └── Unit.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Tests.php │ │ │ │ └── Totals.php │ │ │ ├── Util.php │ │ │ └── Util │ │ │ └── InvalidArgumentHelper.php │ └── tests │ │ ├── PHP │ │ ├── CodeCoverage │ │ │ ├── FilterTest.php │ │ │ ├── Report │ │ │ │ ├── CloverTest.php │ │ │ │ └── FactoryTest.php │ │ │ └── UtilTest.php │ │ └── CodeCoverageTest.php │ │ ├── TestCase.php │ │ └── _files │ │ ├── BankAccount-clover.xml │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── class-with-anonymous-function-clover.xml │ │ ├── ignored-lines-clover.xml │ │ ├── source_with_class_and_anonymous_function.php │ │ ├── source_with_ignore.php │ │ ├── source_with_namespace.php │ │ ├── source_with_oneline_annotations.php │ │ ├── source_without_ignore.php │ │ └── source_without_namespace.php ├── php-file-iterator │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.markdown │ ├── File │ │ ├── Iterator.php │ │ └── Iterator │ │ │ ├── Autoload.php │ │ │ ├── Autoload.php.in │ │ │ ├── Facade.php │ │ │ └── Factory.php │ ├── LICENSE │ ├── README.markdown │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ └── phpmd.xml │ ├── composer.json │ └── package.xml ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Template.php ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ │ └── Timer.php │ └── tests │ │ └── TimerTest.php ├── php-token-stream │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── phpunit.xml │ ├── composer.json │ ├── src │ │ ├── Token.php │ │ └── Token │ │ │ ├── Stream.php │ │ │ └── Stream │ │ │ └── CachingFactory.php │ └── tests │ │ ├── Token │ │ ├── ClassTest.php │ │ ├── ClosureTest.php │ │ ├── FunctionTest.php │ │ ├── IncludeTest.php │ │ ├── InterfaceTest.php │ │ └── NamespaceTest.php │ │ ├── TokenTest.php │ │ ├── _fixture │ │ ├── classExtendsNamespacedClass.php │ │ ├── classInNamespace.php │ │ ├── classInScopedNamespace.php │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ ├── closure.php │ │ ├── issue19.php │ │ ├── issue30.php │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ ├── source.php │ │ ├── source2.php │ │ ├── source3.php │ │ ├── source4.php │ │ └── source5.php │ │ └── bootstrap.php ├── phpunit-mock-objects │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ ├── Builder │ │ │ ├── Identity.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Match.php │ │ │ ├── MethodNameMatch.php │ │ │ ├── Namespace.php │ │ │ ├── ParametersMatch.php │ │ │ └── Stub.php │ │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ ├── mocked_class.tpl.dist │ │ │ ├── mocked_class_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── mocked_method.tpl.dist │ │ │ ├── mocked_static_method.tpl.dist │ │ │ ├── proxied_method.tpl.dist │ │ │ ├── trait_class.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ └── wsdl_method.tpl.dist │ │ │ ├── Invocation.php │ │ │ ├── Invocation │ │ │ ├── Object.php │ │ │ └── Static.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Invokable.php │ │ │ ├── Matcher.php │ │ │ ├── Matcher │ │ │ ├── AnyInvokedCount.php │ │ │ ├── AnyParameters.php │ │ │ ├── Invocation.php │ │ │ ├── InvokedAtIndex.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedCount.php │ │ │ ├── InvokedRecorder.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── StatelessInvocation.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockObject.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ ├── ConsecutiveCalls.php │ │ │ ├── Exception.php │ │ │ ├── MatcherCollection.php │ │ │ ├── Return.php │ │ │ ├── ReturnArgument.php │ │ │ ├── ReturnCallback.php │ │ │ ├── ReturnSelf.php │ │ │ └── ReturnValueMap.php │ │ │ └── Verifiable.php │ └── tests │ │ ├── GeneratorTest.php │ │ ├── MockBuilderTest.php │ │ ├── MockObject │ │ ├── Invocation │ │ │ ├── ObjectTest.php │ │ │ └── StaticTest.php │ │ ├── class.phpt │ │ ├── class_call_parent_clone.phpt │ │ ├── class_call_parent_constructor.phpt │ │ ├── class_dont_call_parent_clone.phpt │ │ ├── class_dont_call_parent_constructor.phpt │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ ├── class_partial.phpt │ │ ├── class_with_method_named_method.phpt │ │ ├── interface.phpt │ │ ├── invocation_object_clone_object.phpt │ │ ├── namespaced_class.phpt │ │ ├── namespaced_class_call_parent_clone.phpt │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ ├── namespaced_class_partial.phpt │ │ ├── namespaced_interface.phpt │ │ ├── nonexistent_class.phpt │ │ ├── nonexistent_class_with_namespace.phpt │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ ├── proxy.phpt │ │ ├── wsdl_class.phpt │ │ ├── wsdl_class_namespace.phpt │ │ └── wsdl_class_partial.phpt │ │ ├── MockObjectTest.php │ │ ├── ProxyObjectTest.php │ │ ├── _files │ │ ├── AbstractMockTestClass.php │ │ ├── AbstractTrait.php │ │ ├── AnInterface.php │ │ ├── AnotherInterface.php │ │ ├── Bar.php │ │ ├── ClassThatImplementsSerializable.php │ │ ├── ClassWithStaticMethod.php │ │ ├── Foo.php │ │ ├── FunctionCallback.php │ │ ├── GoogleSearch.wsdl │ │ ├── InterfaceWithStaticMethod.php │ │ ├── MethodCallback.php │ │ ├── MethodCallbackByReference.php │ │ ├── Mockable.php │ │ ├── PartialMockTestClass.php │ │ ├── SomeClass.php │ │ ├── StaticMockTestClass.php │ │ └── TraversableMockTestInterface.php │ │ ├── autoload.php │ │ └── bootstrap.php └── phpunit │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ ├── ca.pem │ ├── phar-autoload.php.in │ ├── phar-manifest.php │ ├── phar-version.php │ ├── phpmd.xml │ └── travis-ci.xml │ ├── composer.json │ ├── phpdox.xml.dist │ ├── phpunit │ ├── phpunit.xml.dist │ ├── phpunit.xsd │ ├── src │ ├── Exception.php │ ├── Extensions │ │ ├── GroupTestSuite.php │ │ ├── PhptTestCase.php │ │ ├── PhptTestSuite.php │ │ ├── RepeatedTest.php │ │ ├── TestDecorator.php │ │ └── TicketListener.php │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── AssertionFailedError.php │ │ ├── BaseTestListener.php │ │ ├── CodeCoverageException.php │ │ ├── Comparator.php │ │ ├── Comparator │ │ │ ├── Array.php │ │ │ ├── DOMNode.php │ │ │ ├── DateTime.php │ │ │ ├── Double.php │ │ │ ├── Exception.php │ │ │ ├── MockObject.php │ │ │ ├── Numeric.php │ │ │ ├── Object.php │ │ │ ├── Resource.php │ │ │ ├── Scalar.php │ │ │ ├── SplObjectStorage.php │ │ │ └── Type.php │ │ ├── ComparatorFactory.php │ │ ├── ComparisonFailure.php │ │ ├── Constraint.php │ │ ├── Constraint │ │ │ ├── And.php │ │ │ ├── ArrayHasKey.php │ │ │ ├── Attribute.php │ │ │ ├── Callback.php │ │ │ ├── ClassHasAttribute.php │ │ │ ├── ClassHasStaticAttribute.php │ │ │ ├── Composite.php │ │ │ ├── Count.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionCode.php │ │ │ ├── ExceptionMessage.php │ │ │ ├── FileExists.php │ │ │ ├── GreaterThan.php │ │ │ ├── IsAnything.php │ │ │ ├── IsEmpty.php │ │ │ ├── IsEqual.php │ │ │ ├── IsFalse.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsJson.php │ │ │ ├── IsNull.php │ │ │ ├── IsTrue.php │ │ │ ├── IsType.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProvider.php │ │ │ ├── LessThan.php │ │ │ ├── Not.php │ │ │ ├── ObjectHasAttribute.php │ │ │ ├── Or.php │ │ │ ├── PCREMatch.php │ │ │ ├── SameSize.php │ │ │ ├── StringContains.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringMatches.php │ │ │ ├── StringStartsWith.php │ │ │ ├── TraversableContains.php │ │ │ ├── TraversableContainsOnly.php │ │ │ └── Xor.php │ │ ├── Error.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── Exception.php │ │ ├── ExpectationFailedException.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestError.php │ │ ├── InvalidCoversTargetError.php │ │ ├── InvalidCoversTargetException.php │ │ ├── OutputError.php │ │ ├── RiskyTest.php │ │ ├── RiskyTestError.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestError.php │ │ ├── SkippedTestSuiteError.php │ │ ├── SyntheticError.php │ │ ├── Test.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuite │ │ │ └── DataProvider.php │ │ ├── UnintentionallyCoveredCodeError.php │ │ └── Warning.php │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── Exception.php │ │ ├── Filter │ │ │ ├── Factory.php │ │ │ ├── Group.php │ │ │ ├── Group │ │ │ │ ├── Exclude.php │ │ │ │ └── Include.php │ │ │ └── Test.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestSuiteLoader.php │ │ └── Version.php │ ├── TextUI │ │ ├── Command.php │ │ ├── ResultPrinter.php │ │ └── TestRunner.php │ └── Util │ │ ├── Blacklist.php │ │ ├── Configuration.php │ │ ├── DeprecatedFeature.php │ │ ├── DeprecatedFeature │ │ └── Logger.php │ │ ├── ErrorHandler.php │ │ ├── Fileloader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── Getopt.php │ │ ├── GlobalState.php │ │ ├── InvalidArgumentHelper.php │ │ ├── Log │ │ ├── JSON.php │ │ ├── JUnit.php │ │ └── TAP.php │ │ ├── PHP.php │ │ ├── PHP │ │ ├── Default.php │ │ ├── Template │ │ │ └── TestCaseMethod.tpl.dist │ │ └── Windows.php │ │ ├── Printer.php │ │ ├── String.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ └── ResultPrinter │ │ │ ├── HTML.php │ │ │ └── Text.php │ │ ├── TestSuiteIterator.php │ │ ├── Type.php │ │ └── XML.php │ └── tests │ ├── Extensions │ └── RepeatedTestTest.php │ ├── Framework │ ├── AssertTest.php │ ├── BaseTestListenerTest.php │ ├── ComparatorTest.php │ ├── Constraint │ │ ├── CountTest.php │ │ ├── JsonMatches │ │ │ └── ErrorMessageProviderTest.php │ │ └── JsonMatchesTest.php │ ├── ConstraintTest.php │ ├── SelectorAssertionsTest.php │ ├── SuiteTest.php │ ├── TestCaseTest.php │ ├── TestFailureTest.php │ ├── TestImplementorTest.php │ └── TestListenerTest.php │ ├── Regression │ ├── 523 │ │ └── Issue523Test.php │ ├── 578 │ │ └── Issue578Test.php │ ├── 684 │ │ └── Issue684Test.php │ ├── 783 │ │ ├── ChildSuite.php │ │ ├── OneTest.php │ │ ├── ParentSuite.php │ │ └── TwoTest.php │ ├── 1021 │ │ └── Issue1021Test.php │ ├── 1021.phpt │ ├── 523.phpt │ ├── 578.phpt │ ├── 684.phpt │ ├── 783.phpt │ └── GitHub │ │ ├── 74 │ │ ├── Issue74Test.php │ │ └── NewException.php │ │ ├── 244 │ │ └── Issue244Test.php │ │ ├── 322 │ │ ├── Issue322Test.php │ │ └── phpunit322.xml │ │ ├── 433 │ │ └── Issue433Test.php │ │ ├── 445 │ │ └── Issue445Test.php │ │ ├── 498 │ │ └── Issue498Test.php │ │ ├── 503 │ │ └── Issue503Test.php │ │ ├── 581 │ │ └── Issue581Test.php │ │ ├── 765 │ │ └── Issue765Test.php │ │ ├── 873 │ │ └── Issue873Test.php │ │ ├── 244.phpt │ │ ├── 322.phpt │ │ ├── 433.phpt │ │ ├── 445.phpt │ │ ├── 498.phpt │ │ ├── 503.phpt │ │ ├── 581.phpt │ │ ├── 74.phpt │ │ ├── 765.phpt │ │ ├── 863.phpt │ │ └── 873.phpt │ ├── Runner │ └── BaseTestRunnerTest.php │ ├── TextUI │ ├── abstract-test-class.phpt │ ├── concrete-test-class.phpt │ ├── custom-printer-debug.phpt │ ├── custom-printer-verbose.phpt │ ├── dataprovider-log-xml-isolation.phpt │ ├── dataprovider-log-xml.phpt │ ├── dataprovider-testdox.phpt │ ├── debug.phpt │ ├── default-isolation.phpt │ ├── default.phpt │ ├── dependencies-isolation.phpt │ ├── dependencies.phpt │ ├── dependencies2-isolation.phpt │ ├── dependencies2.phpt │ ├── dependencies3-isolation.phpt │ ├── dependencies3.phpt │ ├── empty-testcase.phpt │ ├── exception-stack.phpt │ ├── exclude-group-isolation.phpt │ ├── exclude-group.phpt │ ├── failure-isolation.phpt │ ├── failure.phpt │ ├── fatal-isolation.phpt │ ├── fatal.phpt │ ├── filter-class-isolation.phpt │ ├── filter-class.phpt │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ ├── filter-dataprovider-by-classname-and-range.phpt │ ├── filter-dataprovider-by-number-isolation.phpt │ ├── filter-dataprovider-by-number.phpt │ ├── filter-dataprovider-by-only-range-isolation.phpt │ ├── filter-dataprovider-by-only-range.phpt │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ ├── filter-dataprovider-by-only-regexp.phpt │ ├── filter-dataprovider-by-only-string-isolation.phpt │ ├── filter-dataprovider-by-only-string.phpt │ ├── filter-dataprovider-by-range-isolation.phpt │ ├── filter-dataprovider-by-range.phpt │ ├── filter-dataprovider-by-regexp-isolation.phpt │ ├── filter-dataprovider-by-regexp.phpt │ ├── filter-dataprovider-by-string-isolation.phpt │ ├── filter-dataprovider-by-string.phpt │ ├── filter-method-isolation.phpt │ ├── filter-method.phpt │ ├── filter-no-results.phpt │ ├── group-isolation.phpt │ ├── group.phpt │ ├── help.phpt │ ├── help2.phpt │ ├── ini-isolation.phpt │ ├── list-groups.phpt │ ├── log-json-5.3.phpt │ ├── log-json-5.4.phpt │ ├── log-json-5.6.phpt │ ├── log-tap.phpt │ ├── log-xml.phpt │ ├── repeat.phpt │ ├── strict-incomplete.phpt │ ├── strict-isolation.phpt │ ├── strict.phpt │ ├── tap.phpt │ ├── test-suffix-multiple.phpt │ ├── test-suffix-single.phpt │ ├── testdox-html.phpt │ ├── testdox-text.phpt │ └── testdox.phpt │ ├── Util │ ├── ConfigurationTest.php │ ├── TestDox │ │ └── NamePrettifierTest.php │ ├── TestTest.php │ └── XMLTest.php │ ├── _files │ ├── AbstractTest.php │ ├── Author.php │ ├── BankAccount.php │ ├── BankAccountTest.php │ ├── BankAccountTest.test.php │ ├── BaseTestListenerSample.php │ ├── BeforeAndAfterTest.php │ ├── BeforeClassAndAfterClassTest.php │ ├── Book.php │ ├── Calculator.php │ ├── ChangeCurrentWorkingDirectoryTest.php │ ├── ClassWithNonPublicAttributes.php │ ├── ClassWithToString.php │ ├── ConcreteTest.my.php │ ├── ConcreteTest.php │ ├── CoverageClassExtendedTest.php │ ├── CoverageClassTest.php │ ├── CoverageFunctionParenthesesTest.php │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ ├── CoverageFunctionTest.php │ ├── CoverageMethodOneLineAnnotationTest.php │ ├── CoverageMethodParenthesesTest.php │ ├── CoverageMethodParenthesesWhitespaceTest.php │ ├── CoverageMethodTest.php │ ├── CoverageNoneTest.php │ ├── CoverageNotPrivateTest.php │ ├── CoverageNotProtectedTest.php │ ├── CoverageNotPublicTest.php │ ├── CoverageNothingTest.php │ ├── CoveragePrivateTest.php │ ├── CoverageProtectedTest.php │ ├── CoveragePublicTest.php │ ├── CoverageTwoDefaultClassAnnotations.php │ ├── CoveredClass.php │ ├── CoveredFunction.php │ ├── CustomPrinter.php │ ├── DataProviderFilterTest.php │ ├── DataProviderTest.php │ ├── DependencyFailureTest.php │ ├── DependencySuccessTest.php │ ├── DependencyTestSuite.php │ ├── DoubleTestCase.php │ ├── DummyException.php │ ├── EmptyTestCaseTest.php │ ├── Error.php │ ├── ExceptionInAssertPostConditionsTest.php │ ├── ExceptionInAssertPreConditionsTest.php │ ├── ExceptionInSetUpTest.php │ ├── ExceptionInTearDownTest.php │ ├── ExceptionInTest.php │ ├── ExceptionNamespaceTest.php │ ├── ExceptionStackTest.php │ ├── ExceptionTest.php │ ├── Failure.php │ ├── FailureTest.php │ ├── FatalTest.php │ ├── IncompleteTest.php │ ├── InheritedTestCase.php │ ├── IniTest.php │ ├── JsonData │ │ ├── arrayObject.js │ │ ├── simpleObject.js │ │ └── simpleObject2.js │ ├── MockRunner.php │ ├── MultiDependencyTest.php │ ├── NamespaceCoverageClassExtendedTest.php │ ├── NamespaceCoverageClassTest.php │ ├── NamespaceCoverageCoversClassPublicTest.php │ ├── NamespaceCoverageCoversClassTest.php │ ├── NamespaceCoverageMethodTest.php │ ├── NamespaceCoverageNotPrivateTest.php │ ├── NamespaceCoverageNotProtectedTest.php │ ├── NamespaceCoverageNotPublicTest.php │ ├── NamespaceCoveragePrivateTest.php │ ├── NamespaceCoverageProtectedTest.php │ ├── NamespaceCoveragePublicTest.php │ ├── NamespaceCoveredClass.php │ ├── NoArgTestCaseTest.php │ ├── NoTestCaseClass.php │ ├── NoTestCases.php │ ├── NonStatic.php │ ├── NotExistingCoveredElementTest.php │ ├── NotPublicTestCase.php │ ├── NotVoidTestCase.php │ ├── NothingTest.php │ ├── OneTestCase.php │ ├── OutputTestCase.php │ ├── OverrideTestCase.php │ ├── RequirementsClassDocBlockTest.php │ ├── RequirementsTest.php │ ├── SampleArrayAccess.php │ ├── SampleClass.php │ ├── SelectorAssertionsFixture.html │ ├── Singleton.php │ ├── StackTest.php │ ├── Struct.php │ ├── Success.php │ ├── TemplateMethodsTest.php │ ├── TestIterator.php │ ├── TestIterator2.php │ ├── ThrowExceptionTestCase.php │ ├── ThrowNoExceptionTestCase.php │ ├── WasRun.php │ ├── bar.xml │ ├── configuration.custom-printer.xml │ ├── configuration.xml │ ├── configuration_xinclude.xml │ ├── expectedFileFormat.txt │ ├── foo.xml │ ├── structureAttributesAreSameButValuesAreNot.xml │ ├── structureExpected.xml │ ├── structureIgnoreTextNodes.xml │ ├── structureIsSameButDataIsNot.xml │ ├── structureWrongNumberOfAttributes.xml │ └── structureWrongNumberOfNodes.xml │ ├── autoload.php │ ├── bootstrap-travis.php │ └── bootstrap.php ├── sebastian ├── diff │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── LCS │ │ │ ├── LongestCommonSubsequence.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ ├── Line.php │ │ └── Parser.php │ └── tests │ │ ├── DifferTest.php │ │ ├── LCS │ │ └── TimeEfficientImplementationTest.php │ │ ├── ParserTest.php │ │ └── fixtures │ │ ├── patch.txt │ │ └── patch2.txt ├── environment │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── src │ │ ├── Console.php │ │ └── Runtime.php │ └── tests │ │ ├── ConsoleTest.php │ │ └── RuntimeTest.php ├── exporter │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Context.php │ │ ├── Exception.php │ │ └── Exporter.php │ └── tests │ │ └── ExporterTest.php └── version │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Version.php ├── setasign ├── fpdf │ ├── FAQ.htm │ ├── README.md │ ├── changelog.htm │ ├── composer.json │ ├── doc │ │ ├── __construct.htm │ │ ├── acceptpagebreak.htm │ │ ├── addfont.htm │ │ ├── addlink.htm │ │ ├── addpage.htm │ │ ├── aliasnbpages.htm │ │ ├── cell.htm │ │ ├── close.htm │ │ ├── error.htm │ │ ├── footer.htm │ │ ├── getpageheight.htm │ │ ├── getpagewidth.htm │ │ ├── getstringwidth.htm │ │ ├── getx.htm │ │ ├── gety.htm │ │ ├── header.htm │ │ ├── image.htm │ │ ├── index.htm │ │ ├── line.htm │ │ ├── link.htm │ │ ├── ln.htm │ │ ├── multicell.htm │ │ ├── output.htm │ │ ├── pageno.htm │ │ ├── rect.htm │ │ ├── setauthor.htm │ │ ├── setautopagebreak.htm │ │ ├── setcompression.htm │ │ ├── setcreator.htm │ │ ├── setdisplaymode.htm │ │ ├── setdrawcolor.htm │ │ ├── setfillcolor.htm │ │ ├── setfont.htm │ │ ├── setfontsize.htm │ │ ├── setkeywords.htm │ │ ├── setleftmargin.htm │ │ ├── setlinewidth.htm │ │ ├── setlink.htm │ │ ├── setmargins.htm │ │ ├── setrightmargin.htm │ │ ├── setsubject.htm │ │ ├── settextcolor.htm │ │ ├── settitle.htm │ │ ├── settopmargin.htm │ │ ├── setx.htm │ │ ├── setxy.htm │ │ ├── sety.htm │ │ ├── text.htm │ │ └── write.htm │ ├── font │ │ ├── courier.php │ │ ├── courierb.php │ │ ├── courierbi.php │ │ ├── courieri.php │ │ ├── helvetica.php │ │ ├── helveticab.php │ │ ├── helveticabi.php │ │ ├── helveticai.php │ │ ├── symbol.php │ │ ├── times.php │ │ ├── timesb.php │ │ ├── timesbi.php │ │ ├── timesi.php │ │ └── zapfdingbats.php │ ├── fpdf.css │ ├── fpdf.php │ ├── install.txt │ ├── license.txt │ ├── makefont │ │ ├── cp1250.map │ │ ├── cp1251.map │ │ ├── cp1252.map │ │ ├── cp1253.map │ │ ├── cp1254.map │ │ ├── cp1255.map │ │ ├── cp1257.map │ │ ├── cp1258.map │ │ ├── cp874.map │ │ ├── iso-8859-1.map │ │ ├── iso-8859-11.map │ │ ├── iso-8859-15.map │ │ ├── iso-8859-16.map │ │ ├── iso-8859-2.map │ │ ├── iso-8859-4.map │ │ ├── iso-8859-5.map │ │ ├── iso-8859-7.map │ │ ├── iso-8859-9.map │ │ ├── koi8-r.map │ │ ├── koi8-u.map │ │ ├── makefont.php │ │ └── ttfparser.php │ └── tutorial │ │ ├── 20k_c1.txt │ │ ├── 20k_c2.txt │ │ ├── calligra.php │ │ ├── calligra.ttf │ │ ├── calligra.z │ │ ├── countries.txt │ │ ├── index.htm │ │ ├── logo.png │ │ ├── makefont.php │ │ ├── tuto1.htm │ │ ├── tuto1.php │ │ ├── tuto2.htm │ │ ├── tuto2.php │ │ ├── tuto3.htm │ │ ├── tuto3.php │ │ ├── tuto4.htm │ │ ├── tuto4.php │ │ ├── tuto5.htm │ │ ├── tuto5.php │ │ ├── tuto6.htm │ │ ├── tuto6.php │ │ ├── tuto7.htm │ │ └── tuto7.php └── fpdi │ ├── README.md │ └── composer.json └── symfony └── yaml ├── .gitignore ├── CHANGELOG.md ├── Dumper.php ├── Escaper.php ├── Exception ├── DumpException.php ├── ExceptionInterface.php ├── ParseException.php └── RuntimeException.php ├── Inline.php ├── LICENSE ├── Parser.php ├── README.md ├── Tests ├── DumperTest.php ├── Fixtures │ ├── YtsAnchorAlias.yml │ ├── YtsBasicTests.yml │ ├── YtsBlockMapping.yml │ ├── YtsDocumentSeparator.yml │ ├── YtsErrorTests.yml │ ├── YtsFlowCollections.yml │ ├── YtsFoldedScalars.yml │ ├── YtsNullsAndEmpties.yml │ ├── YtsSpecificationExamples.yml │ ├── YtsTypeTransfers.yml │ ├── embededPhp.yml │ ├── escapedCharacters.yml │ ├── index.yml │ ├── sfComments.yml │ ├── sfCompact.yml │ ├── sfMergeKey.yml │ ├── sfObjects.yml │ ├── sfQuotes.yml │ ├── sfTests.yml │ └── unindentedCollections.yml ├── InlineTest.php ├── ParseExceptionTest.php ├── ParserTest.php └── YamlTest.php ├── Unescaper.php ├── Yaml.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | /app/config/parameters.yml 2 | /build/ 3 | /phpunit.xml 4 | /var/* 5 | !/var/cache 6 | /var/cache/* 7 | !var/cache/.gitkeep 8 | !/var/logs 9 | /var/logs/* 10 | !var/logs/.gitkeep 11 | !/var/sessions 12 | /var/sessions/* 13 | !var/sessions/.gitkeep 14 | !var/SymfonyRequirements.php 15 | /vendor/ 16 | /web/bundles/ 17 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- 1 | checks: 2 | php: true 3 | 4 | filter: 5 | excluded_paths: 6 | - tests/* 7 | - vendor/* 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | env: 4 | global: 5 | - XDEBUG_MODE=coverage 6 | 7 | php: 8 | - 7.3 9 | - 7.4 10 | 11 | before_script: 12 | - composer update --no-interaction 13 | - composer install --no-interaction 14 | 15 | script: 16 | - ./vendor/bin/phpunit --coverage-text 17 | 18 | notifications: 19 | email: "royopa@gmail.com" 20 | 21 | matrix: 22 | fast_finish: true 23 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "royopa/fpdf-symfony2", 3 | "type": "library", 4 | "description": "fpdf vendor for use with symfony, based on toooni/fpdf", 5 | "keywords": [], 6 | "homepage": "https://github.com/royopa/fpdf-symfony2", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Rodrigo Prado de Jesus", 11 | "email": "royopa@gmail.com" 12 | } 13 | ], 14 | "require": { 15 | "php": ">=5.3.3", 16 | "setasign/fpdf": "~1.8", 17 | "setasign/fpdi": "~2.3" 18 | }, 19 | "require-dev": { 20 | "phpunit/phpunit": "4.0.*" 21 | }, 22 | "autoload": { 23 | "psr-0" : { 24 | "FPDF_" : "lib/" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | tests 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | array($baseDir . '/lib'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/setasign/fpdi/src'), 10 | 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'), 11 | 'Symfony\\Component\\Yaml\\' => array($vendorDir . '/symfony/yaml'), 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/composer/include_paths.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | ../tests/PHP 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | ../src 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | tests/PHP 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | src 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/scripts/auto_append.php: -------------------------------------------------------------------------------- 1 | stop(); 3 | 4 | $writer = new PHP_CodeCoverage_Report_HTML; 5 | $writer->process($coverage, '/tmp/coverage'); 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/scripts/auto_prepend.php: -------------------------------------------------------------------------------- 1 | filter(); 6 | 7 | $filter->addFileToBlacklist(__FILE__); 8 | $filter->addFileToBlacklist(dirname(__FILE__) . '/auto_append.php'); 9 | 10 | $coverage->start($_SERVER['SCRIPT_FILENAME']); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/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 | 11 | /** 12 | * Exception class for PHP_CodeCoverage component. 13 | * 14 | * @category PHP 15 | * @package CodeCoverage 16 | * @author Sebastian Bergmann 17 | * @copyright Sebastian Bergmann 18 | * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License 19 | * @link http://github.com/sebastianbergmann/php-code-coverage 20 | * @since Class available since Release 1.1.0 21 | */ 22 | class PHP_CodeCoverage_Exception extends RuntimeException 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/coverage_bar.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royopa/fpdf-symfony2/f8084fb21aaf6d87ea9a322667d4f360d47c8572/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royopa/fpdf-symfony2/f8084fb21aaf6d87ea9a322667d4f360d47c8572/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royopa/fpdf-symfony2/f8084fb21aaf6d87ea9a322667d4f360d47c8572/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royopa/fpdf-symfony2/f8084fb21aaf6d87ea9a322667d4f360d47c8572/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/method_item.html.dist: -------------------------------------------------------------------------------- 1 | 2 | {{name}} 3 | {{methods_bar}} 4 |
{{methods_tested_percent}}
5 |
{{methods_number}}
6 | {{crap}} 7 | {{lines_bar}} 8 |
{{lines_executed_percent}}
9 |
{{lines_number}}
10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/CodeCoverage/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 | /** 12 | * @category PHP 13 | * @package CodeCoverage 14 | * @author Arne Blankerts 15 | * @copyright Sebastian Bergmann 16 | * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License 17 | * @link http://github.com/sebastianbergmann/php-code-coverage 18 | * @since Class available since Release 2.0.0 19 | */ 20 | class PHP_CodeCoverage_Report_XML_Directory extends PHP_CodeCoverage_Report_XML_Node 21 | { 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/BankAccount.php: -------------------------------------------------------------------------------- 1 | balance; 9 | } 10 | 11 | protected function setBalance($balance) 12 | { 13 | if ($balance >= 0) { 14 | $this->balance = $balance; 15 | } else { 16 | throw new RuntimeException; 17 | } 18 | } 19 | 20 | public function depositMoney($balance) 21 | { 22 | $this->setBalance($this->getBalance() + $balance); 23 | 24 | return $this->getBalance(); 25 | } 26 | 27 | public function withdrawMoney($balance) 28 | { 29 | $this->setBalance($this->getBalance() - $balance); 30 | 31 | return $this->getBalance(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | public function testSomething() 14 | { 15 | $o = new Foo\CoveredClass; 16 | $o->publicMethod(); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredClass.php: -------------------------------------------------------------------------------- 1 | privateMethod(); 11 | } 12 | 13 | public function publicMethod() 14 | { 15 | $this->protectedMethod(); 16 | } 17 | } 18 | 19 | class CoveredClass extends CoveredParentClass 20 | { 21 | private function privateMethod() 22 | { 23 | } 24 | 25 | protected function protectedMethod() 26 | { 27 | parent::protectedMethod(); 28 | $this->privateMethod(); 29 | } 30 | 31 | public function publicMethod() 32 | { 33 | parent::publicMethod(); 34 | $this->protectedMethod(); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveredClass.php: -------------------------------------------------------------------------------- 1 | privateMethod(); 13 | } 14 | 15 | public function publicMethod() 16 | { 17 | $this->protectedMethod(); 18 | } 19 | } 20 | 21 | class CoveredClass extends CoveredParentClass 22 | { 23 | private function privateMethod() 24 | { 25 | } 26 | 27 | protected function protectedMethod() 28 | { 29 | parent::protectedMethod(); 30 | $this->privateMethod(); 31 | } 32 | 33 | public function publicMethod() 34 | { 35 | parent::publicMethod(); 36 | $this->protectedMethod(); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | public function testThree() 22 | { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_with_class_and_anonymous_function.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/README.md: -------------------------------------------------------------------------------- 1 | # Text_Template 2 | 3 | ## Installation 4 | 5 | ## Installation 6 | 7 | To add this package as a local, per-project dependency to your project, simply add a dependency on `phpunit/php-text-template` to your project's `composer.json` file. Here is a minimal example of a `composer.json` file that just defines a dependency on Text_Template: 8 | 9 | { 10 | "require": { 11 | "phpunit/php-text-template": "~1.2" 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-text-template", 3 | "description": "Simple template engine.", 4 | "type": "library", 5 | "keywords": [ 6 | "template" 7 | ], 8 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 9 | "license": "BSD-3-Clause", 10 | "authors": [ 11 | { 12 | "name": "Sebastian Bergmann", 13 | "email": "sebastian@phpunit.de", 14 | "role": "lead" 15 | } 16 | ], 17 | "support": { 18 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues" 19 | }, 20 | "require": { 21 | "php": ">=5.3.3" 22 | }, 23 | "autoload": { 24 | "classmap": [ 25 | "src/" 26 | ] 27 | } 28 | } 29 | 30 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - 5.6 8 | - 7.0 9 | - 7.0snapshot 10 | - 7.1 11 | - 7.1snapshot 12 | - master 13 | 14 | sudo: false 15 | 16 | before_install: 17 | - composer self-update 18 | - composer clear-cache 19 | 20 | install: 21 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 22 | 23 | script: 24 | - ./vendor/bin/phpunit 25 | 26 | notifications: 27 | email: false 28 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /composer.phar 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - 5.6 8 | - 7.0 9 | - 7.0snapshot 10 | - 7.1 11 | - 7.1snapshot 12 | - master 13 | 14 | sudo: false 15 | 16 | before_install: 17 | - composer self-update 18 | - composer clear-cache 19 | 20 | install: 21 | - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable 22 | 23 | script: 24 | - ./vendor/bin/phpunit --configuration ./build/phpunit.xml --coverage-clover=coverage.xml 25 | 26 | after_success: 27 | - bash <(curl -s https://codecov.io/bash) 28 | 29 | notifications: 30 | email: false 31 | 32 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/README.md: -------------------------------------------------------------------------------- 1 | [![Build Status](https://travis-ci.org/sebastianbergmann/php-token-stream.svg?branch=master)](https://travis-ci.org/sebastianbergmann/php-token-stream) 2 | 3 | # PHP_TokenStream 4 | 5 | ## Installation 6 | 7 | You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/): 8 | 9 | composer require phpunit/php-token-stream 10 | 11 | If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency: 12 | 13 | composer require --dev phpunit/php-token-stream 14 | 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/build/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ../tests 9 | 10 | 11 | 12 | 13 | 14 | ../src 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classExtendsNamespacedClass.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 | 2 | 7 | 8 | ../tests 9 | ../tests 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | tests 9 | tests 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | src 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/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/Framework/MockObject/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/Framework/MockObject/Generator/mocked_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}) 3 | { 4 | $arguments = array({arguments_call}); 5 | $count = func_num_args(); 6 | 7 | if ($count > {arguments_count}) { 8 | $_arguments = func_get_args(); 9 | 10 | for ($i = {arguments_count}; $i < $count; $i++) { 11 | $arguments[] = $_arguments[$i]; 12 | } 13 | } 14 | 15 | $result = $this->__phpunit_getInvocationMocker()->invoke( 16 | new PHPUnit_Framework_MockObject_Invocation_Object( 17 | '{class_name}', '{method_name}', $arguments, $this, {clone_arguments} 18 | ) 19 | ); 20 | 21 | return $result; 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/mocked_static_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}) 3 | { 4 | throw new PHPUnit_Framework_MockObject_BadMethodCallException; 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/proxied_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}) 3 | { 4 | $arguments = array({arguments_call}); 5 | $count = func_num_args(); 6 | 7 | if ($count > {arguments_count}) { 8 | $_arguments = func_get_args(); 9 | 10 | for ($i = {arguments_count}; $i < $count; $i++) { 11 | $arguments[] = $_arguments[$i]; 12 | } 13 | } 14 | 15 | $this->__phpunit_getInvocationMocker()->invoke( 16 | new PHPUnit_Framework_MockObject_Invocation_Object( 17 | '{class_name}', '{method_name}', $arguments, $this, {clone_arguments} 18 | ) 19 | ); 20 | 21 | return call_user_func_array(array($this->__phpunit_originalObject, "{method_name}"), $arguments); 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {prologue}class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/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/Framework/MockObject/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/Framework/MockObject/Generator/wsdl_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_files/AbstractMockTestClass.php: -------------------------------------------------------------------------------- 1 | $value) { 12 | $this->{$key} = $value; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_files/ClassWithStaticMethod.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_files/FunctionCallback.php: -------------------------------------------------------------------------------- 1 | constructorArgs = array($arg1, $arg2); 10 | } 11 | 12 | public function mockableMethod() 13 | { 14 | // something different from NULL 15 | return TRUE; 16 | } 17 | 18 | public function anotherMockableMethod() 19 | { 20 | // something different from NULL 21 | return TRUE; 22 | } 23 | 24 | public function __clone() 25 | { 26 | $this->cloned = TRUE; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_files/PartialMockTestClass.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/_files/SomeClass.php: -------------------------------------------------------------------------------- 1 | &1'); 6 | 7 | if (strpos($tag, '-') === false && strpos($tag, 'No names found') === false) { 8 | print $tag; 9 | } else { 10 | $branch = @exec('git rev-parse --abbrev-ref HEAD'); 11 | $hash = @exec('git log -1 --format="%H"'); 12 | print $branch . '@' . $hash; 13 | } 14 | 15 | print "\n"; 16 | 17 | $lock = json_decode(file_get_contents(__DIR__ . '/../composer.lock')); 18 | 19 | foreach ($lock->packages as $package) { 20 | print $package->name . ': ' . $package->version; 21 | 22 | if (!preg_match('/^[v= ]*(([0-9]+)(\\.([0-9]+)(\\.([0-9]+)(-([0-9]+))?(-?([a-zA-Z-+][a-zA-Z0-9\\.\\-:]*)?)?)?)?)$/', $package->version)) { 23 | print '@' . $package->source->reference; 24 | } 25 | 26 | print "\n"; 27 | } 28 | 29 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/phar-version.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/1021.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #1021: Depending on a test that uses a data provider does not work 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | .. 16 | 17 | Time: %s, Memory: %sMb 18 | 19 | OK (2 tests, 1 assertion) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/1021/Issue1021Test.php: -------------------------------------------------------------------------------- 1 | assertTrue($data); 10 | } 11 | 12 | /** 13 | * @depends testSomething 14 | */ 15 | public function testSomethingElse() 16 | { 17 | } 18 | 19 | public function provider() 20 | { 21 | return array(array(true)); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/523.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #523: assertAttributeEquals does not work with classes extending ArrayIterator 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | . 16 | 17 | Time: %s, Memory: %sMb 18 | 19 | OK (1 test, 1 assertion) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/523/Issue523Test.php: -------------------------------------------------------------------------------- 1 | assertAttributeEquals('foo', 'field', new Issue523()); 7 | } 8 | }; 9 | 10 | class Issue523 extends ArrayIterator 11 | { 12 | protected $field = 'foo'; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/578/Issue578Test.php: -------------------------------------------------------------------------------- 1 | iniSet('error_reporting', E_ALL | E_NOTICE); 7 | trigger_error('Stack Trace Test Notice', E_NOTICE); 8 | } 9 | 10 | public function testWarningsDoublePrintStackTrace() 11 | { 12 | $this->iniSet('error_reporting', E_ALL | E_NOTICE); 13 | trigger_error('Stack Trace Test Notice', E_WARNING); 14 | } 15 | 16 | public function testUnexpectedExceptionsPrintsCorrectly() 17 | { 18 | throw new Exception('Double printed exception'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/684.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #684: Unable to find test class when no test methods exists 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | F 16 | 17 | Time: %s, Memory: %sMb 18 | 19 | There was 1 failure: 20 | 21 | 1) Warning 22 | No tests found in class "Foo_Bar_Issue684Test". 23 | 24 | FAILURES! 25 | Tests: 1, Assertions: 0, Failures: 1. 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/684/Issue684Test.php: -------------------------------------------------------------------------------- 1 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | .. 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (2 tests, 0 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/783/ChildSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite('OneTest'); 11 | $suite->addTestSuite('TwoTest'); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/783/OneTest.php: -------------------------------------------------------------------------------- 1 | addTest(ChildSuite::suite()); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/783/TwoTest.php: -------------------------------------------------------------------------------- 1 | 17 | --EXPECTF-- 18 | PHPUnit %s by Sebastian Bergmann. 19 | 20 | Configuration read from %s 21 | 22 | 23 | Starting test 'Issue322Test::testOne'. 24 | . 25 | 26 | Time: %s, Memory: %sMb 27 | 28 | OK (1 test, 0 assertions) 29 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/322/Issue322Test.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/433.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-433: expectOutputString not completely working as expected 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | ..F 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | There was 1 failure: 21 | 22 | 1) Issue433Test::testNotMatchingOutput 23 | Failed asserting that two strings are equal. 24 | --- Expected 25 | +++ Actual 26 | @@ @@ 27 | -'foo' 28 | +'bar' 29 | 30 | FAILURES! 31 | Tests: 3, Assertions: 3, Failures: 1. 32 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/433/Issue433Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('test'); 7 | print 'test'; 8 | } 9 | 10 | public function testOutputWithExpectationAfter() 11 | { 12 | print 'test'; 13 | $this->expectOutputString('test'); 14 | } 15 | 16 | public function testNotMatchingOutput() 17 | { 18 | print 'bar'; 19 | $this->expectOutputString('foo'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/445.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-455: expectOutputString not working in strict mode 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | ..F 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | There was 1 failure: 22 | 23 | 1) Issue445Test::testNotMatchingOutput 24 | Failed asserting that two strings are equal. 25 | --- Expected 26 | +++ Actual 27 | @@ @@ 28 | -'foo' 29 | +'bar' 30 | 31 | FAILURES! 32 | Tests: 3, Assertions: 3, Failures: 1. 33 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/445/Issue445Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('test'); 7 | print 'test'; 8 | } 9 | 10 | public function testOutputWithExpectationAfter() 11 | { 12 | print 'test'; 13 | $this->expectOutputString('test'); 14 | } 15 | 16 | public function testNotMatchingOutput() 17 | { 18 | print 'bar'; 19 | $this->expectOutputString('foo'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/498.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-498: The test methods won't be run if a dataProvider throws Exception and --group is added in command line 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | F 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | There was 1 failure: 23 | 24 | 1) Warning 25 | The data provider specified for Issue498Test::shouldBeFalse is invalid. 26 | Can't create the data 27 | 28 | FAILURES! 29 | Tests: 1, Assertions: 0, Failures: 1. 30 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/503.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-503: assertEquals() Line Ending Differences Are Obscure 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | F 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | There was 1 failure: 21 | 22 | 1) Issue503Test::testCompareDifferentLineEndings 23 | Failed asserting that two strings are identical. 24 | --- Expected 25 | +++ Actual 26 | @@ @@ 27 | #Warning: Strings contain different line endings! 28 | foo 29 | 30 | %s:%i 31 | 32 | FAILURES! 33 | Tests: 1, Assertions: 1, Failures: 1. 34 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/503/Issue503Test.php: -------------------------------------------------------------------------------- 1 | assertSame( 7 | "foo\n", 8 | "foo\r\n" 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/581/Issue581Test.php: -------------------------------------------------------------------------------- 1 | assertEquals( 6 | (object)array(1,2,"Test\r\n",4,5,6,7,8), 7 | (object)array(1,2,"Test\r\n",4,1,6,7,8) 8 | ); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/74.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-74: catchable fatal error in 3.5 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | E 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | There was 1 error: 21 | 22 | 1) Issue74Test::testCreateAndThrowNewExceptionInProcessIsolation 23 | NewException: Testing GH-74 24 | 25 | %s/tests/Regression/GitHub/74/Issue74Test.php:7 26 | 27 | FAILURES! 28 | Tests: 1, Assertions: 0, Errors: 1. 29 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/74/Issue74Test.php: -------------------------------------------------------------------------------- 1 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | .F 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | There was 1 failure: 21 | 22 | 1) Warning 23 | The data provider specified for Issue765Test::testDependent is invalid. 24 | 25 | FAILURES! 26 | Tests: 2, Assertions: 1, Failures: 1. 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/765/Issue765Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | 9 | /** 10 | * @depends testDependee 11 | * @dataProvider dependentProvider 12 | */ 13 | public function testDependent($a) 14 | { 15 | $this->assertTrue(true); 16 | } 17 | 18 | public function dependentProvider() 19 | { 20 | throw new Exception; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/863.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-863: Number of tests to run calculated incorrectly when --repeat is used 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ............................................................... 63 / 150 ( 42%) 19 | ............................................................... 126 / 150 ( 84%) 20 | ........................ 21 | 22 | Time: %s, Memory: %sMb 23 | 24 | OK (150 tests, 150 assertions) 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/873.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-873: PHPUnit suppresses exceptions thrown outside of test case function 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | 14 | Fatal error: Uncaught exception 'Exception' with message 'PHPUnit suppresses exceptions thrown outside of test case function' in %s:%i 15 | Stack trace: 16 | %a 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/873/Issue873Test.php: -------------------------------------------------------------------------------- 1 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | F 16 | 17 | Time: %s, Memory: %sMb 18 | 19 | There was 1 failure: 20 | 21 | 1) Warning 22 | Cannot instantiate class "AbstractTest". 23 | 24 | FAILURES! 25 | Tests: 1, Assertions: 0, Failures: 1. 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/concrete-test-class.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit ConcreteTest ../_files/ConcreteTest.php 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | .. 16 | 17 | Time: %s, Memory: %sMb 18 | 19 | OK (2 tests, 0 assertions) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/dataprovider-testdox.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox DataProviderTest ../_files/DataProviderTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | DataProvider 17 | [ ] Add 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/debug.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --debug BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | 17 | Starting test 'BankAccountTest::testBalanceIsInitiallyZero'. 18 | . 19 | Starting test 'BankAccountTest::testBalanceCannotBecomeNegative'. 20 | . 21 | Starting test 'BankAccountTest::testBalanceCannotBecomeNegative2'. 22 | . 23 | 24 | Time: %s, Memory: %sMb 25 | 26 | OK (3 tests, 3 assertions) 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/default-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | ... 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | OK (3 tests, 3 assertions) 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/default.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | ... 16 | 17 | Time: %s, Memory: %sMb 18 | 19 | OK (3 tests, 3 assertions) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/dependencies2-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation StackTest ../_files/StackTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | .. 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | OK (2 tests, 5 assertions) 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/dependencies2.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit StackTest ../_files/StackTest.php 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | .. 16 | 17 | Time: %s, Memory: %sMb 18 | 19 | OK (2 tests, 5 assertions) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/dependencies3-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation MultiDependencyTest ../_files/MultiDependencyTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | ... 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | OK (3 tests, 2 assertions) 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/dependencies3.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit MultiDependencyTest ../_files/MultiDependencyTest.php 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | ... 16 | 17 | Time: %s, Memory: %sMb 18 | 19 | OK (3 tests, 2 assertions) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/empty-testcase.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit EmptyTestCaseTest ../_files/EmptyTestCaseTest.php 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | F 16 | 17 | Time: %s, Memory: %sMb 18 | 19 | There was 1 failure: 20 | 21 | 1) Warning 22 | No tests found in class "EmptyTestCaseTest". 23 | 24 | FAILURES! 25 | Tests: 1, Assertions: 0, Failures: 1. 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/exclude-group-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --exclude-group balanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | .. 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (2 tests, 2 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/exclude-group.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --exclude-group balanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | .. 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (2 tests, 2 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/fatal-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit FatalTest ../_files/FatalTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | E 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | There was 1 error: 21 | 22 | 1) FatalTest::testFatalError 23 | %s 24 | 25 | FAILURES! 26 | Tests: 1, Assertions: 0, Errors: 1. 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/fatal.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit FatalTest ../_files/FatalTest.php 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | 16 | Fatal error: Call to undefined function non_existing_function() in %s 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-class-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter BankAccountTest BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ... 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (3 tests, 3 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-class.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter BankAccountTest BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | ... 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (3 tests, 3 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-classname-and-range-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter DataProviderFilterTest#1-3 DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ... 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (3 tests, 3 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-classname-and-range.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter DataProviderFilterTest#1-3 DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | ... 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (3 tests, 3 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-number-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter testTrue#3 DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | . 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (1 test, 1 assertion) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-number.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter testTrue#3 DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | . 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (1 test, 1 assertion) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-only-range-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter \#1-3 DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ... 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (3 tests, 3 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-only-range.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter \#1-3 DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | ... 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (3 tests, 3 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-only-regexp-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter @false.* DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | .. 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (2 tests, 2 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-only-regexp.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter @false.* DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | .. 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (2 tests, 2 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-only-string-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter @false\ test DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | . 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (1 test, 1 assertion) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-only-string.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter @false\ test DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | . 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (1 test, 1 assertion) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-range-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter testTrue#1-3 DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ... 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (3 tests, 3 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-range.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter testTrue#1-3 DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | ... 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (3 tests, 3 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-regexp-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter testFalse@false.* DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | .. 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (2 tests, 2 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-regexp.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter testFalse@false.* DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | .. 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (2 tests, 2 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-string-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter testFalse@false\ test DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | . 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (1 test, 1 assertion) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-dataprovider-by-string.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter testFalse@false\ test DataProviderFilterTest ../_files/DataProviderFilterTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | . 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (1 test, 1 assertion) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-method-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter testBalanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | . 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (1 test, 1 assertion) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-method.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter testBalanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | . 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (1 test, 1 assertion) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/filter-no-results.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter testBalanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | No tests executed! 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/group-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --group balanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | . 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (1 test, 1 assertion) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/group.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --group balanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | . 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (1 test, 1 assertion) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/ini-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation -d default_mimetype=application/x-test IniTest ../_files/IniTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | . 19 | 20 | Time: %s, Memory: %sMb 21 | 22 | OK (1 test, 1 assertion) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/list-groups.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --list-groups BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | Available test group(s): 17 | - Sebastian Bergmann 18 | - balanceCannotBecomeNegative 19 | - balanceIsInitiallyZero 20 | - specification 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/log-tap.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --log-tap php://stdout BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | TAP version 13 18 | .ok 1 - BankAccountTest::testBalanceIsInitiallyZero 19 | .ok 2 - BankAccountTest::testBalanceCannotBecomeNegative 20 | .ok 3 - BankAccountTest::testBalanceCannotBecomeNegative2 21 | 1..3 22 | 23 | 24 | Time: %s, Memory: %sMb 25 | 26 | OK (3 tests, 3 assertions) 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/repeat.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --repeat 3 BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | ......... 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (9 tests, 9 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/strict-incomplete.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --strict IncompleteTest ../_files/IncompleteTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | I 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | OK, but incomplete, skipped, or risky tests! 21 | Tests: 1, Assertions: 0, Incomplete: 1. 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/strict-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --strict --process-isolation IncompleteTest ../_files/IncompleteTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | R 18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK, but incomplete, skipped, or risky tests! 22 | Tests: 1, Assertions: 0, Risky: 1. 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/strict.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --strict NothingTest ../_files/NothingTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | R 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | OK, but incomplete, skipped, or risky tests! 21 | Tests: 1, Assertions: 0, Risky: 1. 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/tap.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --tap BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | TAP version 13 15 | ok 1 - BankAccountTest::testBalanceIsInitiallyZero 16 | ok 2 - BankAccountTest::testBalanceCannotBecomeNegative 17 | ok 3 - BankAccountTest::testBalanceCannotBecomeNegative2 18 | 1..3 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/test-suffix-multiple.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --test-suffix .test.php,.my.php ../_files/ 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | ..... 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | OK (5 tests, 3 assertions) 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/test-suffix-single.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --test-suffix .test.php ../_files/ 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | ... 17 | 18 | Time: %s, Memory: %sMb 19 | 20 | OK (3 tests, 3 assertions) 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/testdox-html.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox-html php://stdout BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 |

BankAccount

    ...
  • Balance is initially zero
  • Balance cannot become negative
18 | 19 | Time: %s, Memory: %sMb 20 | 21 | OK (3 tests, 3 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/testdox-text.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox-text php://stdout BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | BankAccount 18 | ... [x] Balance is initially zero 19 | [x] Balance cannot become negative 20 | 21 | 22 | 23 | Time: %s, Memory: %sMb 24 | 25 | OK (3 tests, 3 assertions) 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/testdox.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox php://stdout BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | BankAccount 17 | [x] Balance is initially zero 18 | [x] Balance cannot become negative 19 | 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AbstractTest.php: -------------------------------------------------------------------------------- 1 | endCount++; 10 | } 11 | } -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/BeforeAndAfterTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.my.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | public function testSomething() 14 | { 15 | $o = new Foo\CoveredClass; 16 | $o->publicMethod(); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredClass.php: -------------------------------------------------------------------------------- 1 | privateMethod(); 11 | } 12 | 13 | public function publicMethod() 14 | { 15 | $this->protectedMethod(); 16 | } 17 | } 18 | 19 | class CoveredClass extends CoveredParentClass 20 | { 21 | private function privateMethod() 22 | { 23 | } 24 | 25 | protected function protectedMethod() 26 | { 27 | parent::protectedMethod(); 28 | $this->privateMethod(); 29 | } 30 | 31 | public function publicMethod() 32 | { 33 | parent::publicMethod(); 34 | $this->protectedMethod(); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | assertEquals($c, $a + $b); 10 | } 11 | 12 | public static function providerMethod() 13 | { 14 | return array( 15 | array(0, 0, 0), 16 | array(0, 1, 1), 17 | array(1, 1, 3), 18 | array(1, 0, 1) 19 | ); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DependencyFailureTest.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | 9 | /** 10 | * @depends testOne 11 | */ 12 | public function testTwo() 13 | { 14 | } 15 | 16 | /** 17 | * @depends testTwo 18 | */ 19 | public function testThree() 20 | { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DependencySuccessTest.php: -------------------------------------------------------------------------------- 1 | addTestSuite('DependencySuccessTest'); 9 | $suite->addTestSuite('DependencyFailureTest'); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DoubleTestCase.php: -------------------------------------------------------------------------------- 1 | testCase = $testCase; 9 | } 10 | 11 | public function count() 12 | { 13 | return 2; 14 | } 15 | 16 | public function run(PHPUnit_Framework_TestResult $result = null) 17 | { 18 | $result->startTest($this); 19 | 20 | $this->testCase->runBare(); 21 | $this->testCase->runBare(); 22 | 23 | $result->endTest($this, 0); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | setUp = true; 13 | } 14 | 15 | protected function assertPreConditions() 16 | { 17 | $this->assertPreConditions = true; 18 | } 19 | 20 | public function testSomething() 21 | { 22 | $this->testSomething = true; 23 | } 24 | 25 | protected function assertPostConditions() 26 | { 27 | $this->assertPostConditions = true; 28 | throw new Exception; 29 | } 30 | 31 | protected function tearDown() 32 | { 33 | $this->tearDown = true; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ExceptionInAssertPreConditionsTest.php: -------------------------------------------------------------------------------- 1 | setUp = true; 13 | } 14 | 15 | protected function assertPreConditions() 16 | { 17 | $this->assertPreConditions = true; 18 | throw new Exception; 19 | } 20 | 21 | public function testSomething() 22 | { 23 | $this->testSomething = true; 24 | } 25 | 26 | protected function assertPostConditions() 27 | { 28 | $this->assertPostConditions = true; 29 | } 30 | 31 | protected function tearDown() 32 | { 33 | $this->tearDown = true; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ExceptionInSetUpTest.php: -------------------------------------------------------------------------------- 1 | setUp = true; 13 | throw new Exception; 14 | } 15 | 16 | protected function assertPreConditions() 17 | { 18 | $this->assertPreConditions = true; 19 | } 20 | 21 | public function testSomething() 22 | { 23 | $this->testSomething = true; 24 | } 25 | 26 | protected function assertPostConditions() 27 | { 28 | $this->assertPostConditions = true; 29 | } 30 | 31 | protected function tearDown() 32 | { 33 | $this->tearDown = true; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ExceptionInTearDownTest.php: -------------------------------------------------------------------------------- 1 | setUp = true; 13 | } 14 | 15 | protected function assertPreConditions() 16 | { 17 | $this->assertPreConditions = true; 18 | } 19 | 20 | public function testSomething() 21 | { 22 | $this->testSomething = true; 23 | } 24 | 25 | protected function assertPostConditions() 26 | { 27 | $this->assertPostConditions = true; 28 | } 29 | 30 | protected function tearDown() 31 | { 32 | $this->tearDown = true; 33 | throw new Exception; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ExceptionInTest.php: -------------------------------------------------------------------------------- 1 | setUp = true; 13 | } 14 | 15 | protected function assertPreConditions() 16 | { 17 | $this->assertPreConditions = true; 18 | } 19 | 20 | public function testSomething() 21 | { 22 | $this->testSomething = true; 23 | throw new Exception; 24 | } 25 | 26 | protected function assertPostConditions() 27 | { 28 | $this->assertPostConditions = true; 29 | } 30 | 31 | protected function tearDown() 32 | { 33 | $this->tearDown = true; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ExceptionStackTest.php: -------------------------------------------------------------------------------- 1 | assertEquals(array(1), array(2), 'message'); 10 | } catch (PHPUnit_Framework_ExpectationFailedException $e) { 11 | $message = $e->getMessage() . "\n" . $e->getComparisonFailure()->getDiff(); 12 | throw new ExceptionStackTestException("Child exception\n$message", 101, $e); 13 | } 14 | } 15 | 16 | public function testNestedExceptions() 17 | { 18 | $exceptionThree = new Exception('Three'); 19 | $exceptionTwo = new InvalidArgumentException('Two', 0, $exceptionThree); 20 | $exceptionOne = new Exception('One', 0, $exceptionTwo); 21 | throw $exceptionOne; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Failure.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/FatalTest.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/InheritedTestCase.php: -------------------------------------------------------------------------------- 1 | assertEquals('application/x-test', ini_get('default_mimetype')); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/JsonData/arrayObject.js: -------------------------------------------------------------------------------- 1 | ["Mascott", "Tux", "OS", "Linux"] 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.js: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject2.js: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MockRunner.php: -------------------------------------------------------------------------------- 1 | assertEquals('foo', $a); 21 | $this->assertEquals('bar', $b); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageCoversClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveredClass.php: -------------------------------------------------------------------------------- 1 | privateMethod(); 13 | } 14 | 15 | public function publicMethod() 16 | { 17 | $this->protectedMethod(); 18 | } 19 | } 20 | 21 | class CoveredClass extends CoveredParentClass 22 | { 23 | private function privateMethod() 24 | { 25 | } 26 | 27 | protected function protectedMethod() 28 | { 29 | parent::protectedMethod(); 30 | $this->privateMethod(); 31 | } 32 | 33 | public function publicMethod() 34 | { 35 | parent::publicMethod(); 36 | $this->protectedMethod(); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoArgTestCaseTest.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | public function testThree() 22 | { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NotPublicTestCase.php: -------------------------------------------------------------------------------- 1 | expectOutputString('foo'); 7 | print 'foo'; 8 | } 9 | 10 | public function testExpectOutputStringFooActualBar() 11 | { 12 | $this->expectOutputString('foo'); 13 | print 'bar'; 14 | } 15 | 16 | public function testExpectOutputRegexFooActualFoo() 17 | { 18 | $this->expectOutputRegex('/foo/'); 19 | print 'foo'; 20 | } 21 | 22 | public function testExpectOutputRegexFooActualBar() 23 | { 24 | $this->expectOutputRegex('/foo/'); 25 | print 'bar'; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/OverrideTestCase.php: -------------------------------------------------------------------------------- 1 | a = $a; 11 | $this->b = $b; 12 | $this->c = $c; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Singleton.php: -------------------------------------------------------------------------------- 1 | assertEquals(0, count($stack)); 8 | 9 | array_push($stack, 'foo'); 10 | $this->assertEquals('foo', $stack[count($stack)-1]); 11 | $this->assertEquals(1, count($stack)); 12 | 13 | return $stack; 14 | } 15 | 16 | /** 17 | * @depends testPush 18 | */ 19 | public function testPop(array $stack) 20 | { 21 | $this->assertEquals('foo', array_pop($stack)); 22 | $this->assertEquals(0, count($stack)); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Struct.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Success.php: -------------------------------------------------------------------------------- 1 | array = $array; 10 | } 11 | 12 | public function rewind() 13 | { 14 | $this->position = 0; 15 | } 16 | 17 | public function valid() 18 | { 19 | return $this->position < count($this->array); 20 | } 21 | 22 | public function key() 23 | { 24 | return $this->position; 25 | } 26 | 27 | public function current() 28 | { 29 | return $this->array[$this->position]; 30 | } 31 | 32 | public function next() 33 | { 34 | $this->position++; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIterator2.php: -------------------------------------------------------------------------------- 1 | data = $array; 9 | } 10 | 11 | public function current() 12 | { 13 | return current($this->data); 14 | } 15 | 16 | public function next() 17 | { 18 | next($this->data); 19 | } 20 | 21 | public function key() 22 | { 23 | return key($this->data); 24 | } 25 | 26 | public function valid() 27 | { 28 | return key($this->data) !== null; 29 | } 30 | 31 | public function rewind() 32 | { 33 | reset($this->data); 34 | } 35 | } -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | wasRun = true; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.custom-printer.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/structureAttributesAreSameButValuesAreNot.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Image 1: Dette er en test caption 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/structureExpected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Image 1: Dette er en test caption 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/structureIsSameButDataIsNot.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Image is not the same 1: Dette er en test caption 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/structureWrongNumberOfAttributes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Image 1: Dette er en test caption 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/structureWrongNumberOfNodes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/bootstrap-travis.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sebastian/diff", 3 | "description": "Diff implementation", 4 | "keywords": ["diff"], 5 | "homepage": "https://github.com/sebastianbergmann/diff", 6 | "license": "BSD-3-Clause", 7 | "authors": [ 8 | { 9 | "name": "Sebastian Bergmann", 10 | "email": "sebastian@phpunit.de" 11 | }, 12 | { 13 | "name": "Kore Nordmann", 14 | "email": "mail@kore-nordmann.de" 15 | } 16 | ], 17 | "require": { 18 | "php": "^5.3.3 || ^7.0" 19 | }, 20 | "require-dev": { 21 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" 22 | }, 23 | "autoload": { 24 | "classmap": [ 25 | "src/" 26 | ] 27 | }, 28 | "extra": { 29 | "branch-alias": { 30 | "dev-master": "1.4-dev" 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/LCS/LongestCommonSubsequence.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\Diff\LCS; 12 | 13 | /** 14 | * Interface for implementations of longest common subsequence calculation. 15 | */ 16 | interface LongestCommonSubsequence 17 | { 18 | /** 19 | * Calculates the longest common subsequence of two arrays. 20 | * 21 | * @param array $from 22 | * @param array $to 23 | * 24 | * @return array 25 | */ 26 | public function calculate(array $from, array $to); 27 | } 28 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.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\Diff\LCS; 12 | 13 | /** 14 | * @covers SebastianBergmann\Diff\LCS\TimeEfficientImplementation 15 | */ 16 | class TimeEfficientImplementationTest extends LongestCommonSubsequenceTest 17 | { 18 | protected function createImplementation() 19 | { 20 | return new TimeEfficientImplementation; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch2.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | 11 | @@ -320,4 +320,5 @@ class Foo 12 | const A = 'A'; 13 | const B = 'B'; 14 | + const C = 'C'; 15 | const D = 'D'; 16 | 17 | @@ -600,4 +600,5 @@ class Foo 18 | public function doSomething() { 19 | 20 | + return 'foo'; 21 | } 22 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | before_script: 4 | - composer self-update 5 | - composer install --no-interaction --prefer-source --dev 6 | 7 | php: 8 | - 5.3.3 9 | - 5.3 10 | - 5.4 11 | - 5.5 12 | - 5.6 13 | - hhvm 14 | 15 | notifications: 16 | email: false 17 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sebastian/environment", 3 | "description": "Provides functionality to handle HHVM/PHP environments", 4 | "keywords": ["environment","hhvm","xdebug"], 5 | "homepage": "http://www.github.com/sebastianbergmann/environment", 6 | "license": "BSD-3-Clause", 7 | "authors": [ 8 | { 9 | "name": "Sebastian Bergmann", 10 | "email": "sebastian@phpunit.de" 11 | } 12 | ], 13 | "require": { 14 | "php": "^5.3.3 || ^7.0" 15 | }, 16 | "require-dev": { 17 | "phpunit/phpunit": "^4.8 || ^5.0" 18 | }, 19 | "autoload": { 20 | "classmap": [ 21 | "src/" 22 | ] 23 | }, 24 | "extra": { 25 | "branch-alias": { 26 | "dev-master": "1.3.x-dev" 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | phpunit.xml 3 | composer.lock 4 | composer.phar 5 | vendor/ 6 | cache.properties 7 | build/LICENSE 8 | build/README.md 9 | build/*.tgz 10 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | before_script: 4 | - composer self-update 5 | - composer install --no-interaction --prefer-source --dev 6 | 7 | php: 8 | - 5.3.3 9 | - 5.3 10 | - 5.4 11 | - 5.5 12 | - 5.6 13 | - hhvm 14 | 15 | notifications: 16 | email: false 17 | webhooks: 18 | urls: 19 | - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960 20 | on_success: always 21 | on_failure: always 22 | on_start: false 23 | 24 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | tests 10 | 11 | 12 | 13 | 14 | src 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sebastian/version", 3 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 4 | "homepage": "https://github.com/sebastianbergmann/version", 5 | "license": "BSD-3-Clause", 6 | "authors": [ 7 | { 8 | "name": "Sebastian Bergmann", 9 | "email": "sebastian@phpunit.de", 10 | "role": "lead" 11 | } 12 | ], 13 | "support": { 14 | "issues": "https://github.com/sebastianbergmann/version/issues" 15 | }, 16 | "autoload": { 17 | "classmap": [ 18 | "src/" 19 | ] 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/README.md: -------------------------------------------------------------------------------- 1 | # FPDF 2 | **This repository is only made for cloning official FPDF releases which are available at: http://www.fpdf.org** 3 | **THERE WILL BE NO DEVELOPMENT IN THIS REPOSITORY!** 4 | 5 | FPDF is a PHP class which allows to generate PDF files with pure PHP. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs. 6 | 7 | ## Installation with [Composer](https://packagist.org/packages/setasign/fpdf) 8 | 9 | If you're using Composer to manage dependencies, you can use 10 | 11 | $ composer require setasign/fpdf:^1.8 12 | 13 | or you can include the following in your composer.json file: 14 | 15 | ```json 16 | { 17 | "require": { 18 | "setasign/fpdf": "^1.8" 19 | } 20 | } 21 | ``` 22 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "setasign/fpdf", 3 | "homepage": "http://www.fpdf.org", 4 | "description": "FPDF is a PHP class which allows to generate PDF files with pure PHP. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.", 5 | "type": "library", 6 | "keywords": ["pdf", "fpdf"], 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Olivier Plathey", 11 | "email": "oliver@fpdf.org", 12 | "homepage": "http://fpdf.org/" 13 | } 14 | ], 15 | "autoload": { 16 | "classmap": [ 17 | "fpdf.php" 18 | ] 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/close.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Close 6 | 7 | 8 | 9 |

Close

10 | Close() 11 |

Description

12 | Terminates the PDF document. It is not necessary to call this method explicitly because Output() 13 | does it automatically. 14 |
15 | If the document contains no page, AddPage() is called to prevent from getting an invalid document. 16 |

See also

17 | Output 18 |
19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/error.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Error 6 | 7 | 8 | 9 |

Error

10 | Error(string msg) 11 |

Description

12 | This method is automatically called in case of a fatal error; it simply throws an exception 13 | with the provided message.
14 | An inherited class may override it to customize the error handling but the method should 15 | never return, otherwise the resulting document would probably be invalid. 16 |

Parameters

17 |
18 |
msg
19 |
20 | The error message. 21 |
22 |
23 |
24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/getpageheight.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GetPageHeight 6 | 7 | 8 | 9 |

GetPageHeight

10 | float GetPageHeight() 11 |

Description

12 | Returns the current page height. 13 |

See also

14 | GetPageWidth 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/getpagewidth.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GetPageWidth 6 | 7 | 8 | 9 |

GetPageWidth

10 | float GetPageWidth() 11 |

Description

12 | Returns the current page width. 13 |

See also

14 | GetPageHeight 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/getstringwidth.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GetStringWidth 6 | 7 | 8 | 9 |

GetStringWidth

10 | float GetStringWidth(string s) 11 |

Description

12 | Returns the length of a string in user unit. A font must be selected. 13 |

Parameters

14 |
15 |
s
16 |
17 | The string whose length is to be computed. 18 |
19 |
20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/getx.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GetX 6 | 7 | 8 | 9 |

GetX

10 | float GetX() 11 |

Description

12 | Returns the abscissa of the current position. 13 |

See also

14 | SetX, 15 | GetY, 16 | SetY 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/gety.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GetY 6 | 7 | 8 | 9 |

GetY

10 | float GetY() 11 |

Description

12 | Returns the ordinate of the current position. 13 |

See also

14 | SetY, 15 | GetX, 16 | SetX 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/ln.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ln 6 | 7 | 8 | 9 |

Ln

10 | Ln([float h]) 11 |

Description

12 | Performs a line break. The current abscissa goes back to the left margin and the ordinate 13 | increases by the amount passed in parameter. 14 |

Parameters

15 |
16 |
h
17 |
18 | The height of the break. 19 |
20 | By default, the value equals the height of the last printed cell. 21 |
22 |
23 |

See also

24 | Cell 25 |
26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/pageno.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PageNo 6 | 7 | 8 | 9 |

PageNo

10 | int PageNo() 11 |

Description

12 | Returns the current page number. 13 |

See also

14 | AliasNbPages 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/setfontsize.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SetFontSize 6 | 7 | 8 | 9 |

SetFontSize

10 | SetFontSize(float size) 11 |

Description

12 | Defines the size of the current font. 13 |

Parameters

14 |
15 |
size
16 |
17 | The size (in points). 18 |
19 |
20 |

See also

21 | SetFont 22 |
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/doc/setx.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SetX 6 | 7 | 8 | 9 |

SetX

10 | SetX(float x) 11 |

Description

12 | Defines the abscissa of the current position. If the passed value is negative, it is relative 13 | to the right of the page. 14 |

Parameters

15 |
16 |
x
17 |
18 | The value of the abscissa. 19 |
20 |
21 |

See also

22 | GetX, 23 | GetY, 24 | SetY, 25 | SetXY 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/font/courier.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/font/courierb.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/font/courierbi.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/font/courieri.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/install.txt: -------------------------------------------------------------------------------- 1 | The FPDF library is made up of the following elements: 2 | 3 | - the main file, fpdf.php, which contains the class 4 | - the font definition files located in the font directory 5 | 6 | The font definition files are necessary as soon as you want to output some text in a document. 7 | If they are not accessible, the SetFont() method will produce the following error: 8 | 9 | FPDF error: Could not include font definition file 10 | 11 | 12 | Remarks: 13 | 14 | - Only the files corresponding to the fonts actually used are necessary 15 | - The tutorials provided in this package are ready to be executed 16 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/license.txt: -------------------------------------------------------------------------------- 1 | Permission is hereby granted, free of charge, to any person obtaining a copy 2 | of this software to use, copy, modify, distribute, sublicense, and/or sell 3 | copies of the software, and to permit persons to whom the software is furnished 4 | to do so. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. -------------------------------------------------------------------------------- /vendor/setasign/fpdf/tutorial/20k_c1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royopa/fpdf-symfony2/f8084fb21aaf6d87ea9a322667d4f360d47c8572/vendor/setasign/fpdf/tutorial/20k_c1.txt -------------------------------------------------------------------------------- /vendor/setasign/fpdf/tutorial/calligra.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royopa/fpdf-symfony2/f8084fb21aaf6d87ea9a322667d4f360d47c8572/vendor/setasign/fpdf/tutorial/calligra.ttf -------------------------------------------------------------------------------- /vendor/setasign/fpdf/tutorial/calligra.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royopa/fpdf-symfony2/f8084fb21aaf6d87ea9a322667d4f360d47c8572/vendor/setasign/fpdf/tutorial/calligra.z -------------------------------------------------------------------------------- /vendor/setasign/fpdf/tutorial/countries.txt: -------------------------------------------------------------------------------- 1 | Austria;Vienna;83859;8075 2 | Belgium;Brussels;30518;10192 3 | Denmark;Copenhagen;43094;5295 4 | Finland;Helsinki;304529;5147 5 | France;Paris;543965;58728 6 | Germany;Berlin;357022;82057 7 | Greece;Athens;131625;10511 8 | Ireland;Dublin;70723;3694 9 | Italy;Roma;301316;57563 10 | Luxembourg;Luxembourg;2586;424 11 | Netherlands;Amsterdam;41526;15654 12 | Portugal;Lisbon;91906;9957 13 | Spain;Madrid;504790;39348 14 | Sweden;Stockholm;410934;8839 15 | United Kingdom;London;243820;58862 16 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/tutorial/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tutorials 6 | 7 | 8 | 9 |

Tutorials

10 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/tutorial/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royopa/fpdf-symfony2/f8084fb21aaf6d87ea9a322667d4f360d47c8572/vendor/setasign/fpdf/tutorial/logo.png -------------------------------------------------------------------------------- /vendor/setasign/fpdf/tutorial/makefont.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/tutorial/tuto1.php: -------------------------------------------------------------------------------- 1 | AddPage(); 6 | $pdf->SetFont('Arial','B',16); 7 | $pdf->Cell(40,10,'Hello World!'); 8 | $pdf->Output(); 9 | ?> 10 | -------------------------------------------------------------------------------- /vendor/setasign/fpdf/tutorial/tuto7.php: -------------------------------------------------------------------------------- 1 | AddFont('Calligrapher','','calligra.php'); 7 | $pdf->AddPage(); 8 | $pdf->SetFont('Calligrapher','',35); 9 | $pdf->Cell(0,10,'Enjoy new fonts with FPDF!'); 10 | $pdf->Output(); 11 | ?> 12 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 2.8.0 5 | ----- 6 | 7 | * Deprecated usage of a colon in an unquoted mapping value 8 | * Deprecated usage of @, \`, | and > at the beginning of an unquoted string 9 | * When surrounding strings with double-quotes, you must now escape `\` characters. Not 10 | escaping those characters (when surrounded by double-quotes) is deprecated. 11 | 12 | Before: 13 | 14 | ```yml 15 | class: "Foo\Var" 16 | ``` 17 | 18 | After: 19 | 20 | ```yml 21 | class: "Foo\\Var" 22 | ``` 23 | 24 | 2.1.0 25 | ----- 26 | 27 | * Yaml::parse() does not evaluate loaded files as PHP files by default 28 | anymore (call Yaml::enablePhpParsing() to get back the old behavior) 29 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Exception/DumpException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during dumping. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | class DumpException extends RuntimeException 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception interface for all exceptions thrown by the component. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | interface ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during parsing. 16 | * 17 | * @author Romain Neutron 18 | */ 19 | class RuntimeException extends \RuntimeException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- 1 | Yaml Component 2 | ============== 3 | 4 | The Yaml component loads and dumps YAML files. 5 | 6 | Resources 7 | --------- 8 | 9 | * [Documentation](https://symfony.com/doc/current/components/yaml/index.html) 10 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 11 | * [Report issues](https://github.com/symfony/symfony/issues) and 12 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 13 | in the [main Symfony repository](https://github.com/symfony/symfony) 14 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/YtsErrorTests.yml: -------------------------------------------------------------------------------- 1 | --- 2 | test: Missing value for hash item 3 | todo: true 4 | brief: | 5 | Third item in this hash doesn't have a value 6 | yaml: | 7 | okay: value 8 | also okay: ~ 9 | causes error because no value specified 10 | last key: value okay here too 11 | python-error: causes error because no value specified 12 | 13 | --- 14 | test: Not indenting enough 15 | brief: | 16 | There was a bug in PyYaml where it was off by one 17 | in the indentation check. It was allowing the YAML 18 | below. 19 | # This is actually valid YAML now. Someone should tell showell. 20 | yaml: | 21 | foo: 22 | firstline: 1 23 | secondline: 2 24 | php: | 25 | array('foo' => null, 'firstline' => 1, 'secondline' => 2) 26 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/YtsNullsAndEmpties.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Empty Sequence 3 | brief: > 4 | You can represent the empty sequence 5 | with an empty inline sequence. 6 | yaml: | 7 | empty: [] 8 | php: | 9 | array('empty' => array()) 10 | --- 11 | test: Empty Mapping 12 | brief: > 13 | You can represent the empty mapping 14 | with an empty inline mapping. 15 | yaml: | 16 | empty: {} 17 | php: | 18 | array('empty' => array()) 19 | --- 20 | test: Empty Sequence as Entire Document 21 | yaml: | 22 | [] 23 | php: | 24 | array() 25 | --- 26 | test: Empty Mapping as Entire Document 27 | yaml: | 28 | {} 29 | php: | 30 | array() 31 | --- 32 | test: Null as Document 33 | yaml: | 34 | ~ 35 | php: | 36 | null 37 | --- 38 | test: Empty String 39 | brief: > 40 | You can represent an empty string 41 | with a pair of quotes. 42 | yaml: | 43 | '' 44 | php: | 45 | '' 46 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/index.yml: -------------------------------------------------------------------------------- 1 | - escapedCharacters 2 | - sfComments 3 | - sfCompact 4 | - sfTests 5 | - sfObjects 6 | - sfMergeKey 7 | - sfQuotes 8 | - YtsAnchorAlias 9 | - YtsBasicTests 10 | - YtsBlockMapping 11 | - YtsDocumentSeparator 12 | - YtsErrorTests 13 | - YtsFlowCollections 14 | - YtsFoldedScalars 15 | - YtsNullsAndEmpties 16 | - YtsSpecificationExamples 17 | - YtsTypeTransfers 18 | - unindentedCollections 19 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Objects 3 | brief: > 4 | Comments at the end of a line 5 | yaml: | 6 | ex1: "foo # bar" 7 | ex2: "foo # bar" # comment 8 | ex3: 'foo # bar' # comment 9 | ex4: foo # comment 10 | php: | 11 | array('ex1' => 'foo # bar', 'ex2' => 'foo # bar', 'ex3' => 'foo # bar', 'ex4' => 'foo') 12 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/sfQuotes.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Some characters at the beginning of a string must be escaped 3 | brief: > 4 | Some characters at the beginning of a string must be escaped 5 | yaml: | 6 | foo: '| bar' 7 | php: | 8 | array('foo' => '| bar') 9 | --- 10 | test: A key can be a quoted string 11 | brief: > 12 | A key can be a quoted string 13 | yaml: | 14 | "foo1": bar 15 | 'foo2': bar 16 | "foo \" bar": bar 17 | 'foo '' bar': bar 18 | 'foo3: ': bar 19 | "foo4: ": bar 20 | foo5: { "foo \" bar: ": bar, 'foo '' bar: ': bar } 21 | php: | 22 | array( 23 | 'foo1' => 'bar', 24 | 'foo2' => 'bar', 25 | 'foo " bar' => 'bar', 26 | 'foo \' bar' => 'bar', 27 | 'foo3: ' => 'bar', 28 | 'foo4: ' => 'bar', 29 | 'foo5' => array( 30 | 'foo " bar: ' => 'bar', 31 | 'foo \' bar: ' => 'bar', 32 | ), 33 | ) 34 | --------------------------------------------------------------------------------