├── LICENSE.md ├── README.md ├── part-1 ├── composer.json ├── composer.lock ├── phpunit.xml ├── src │ └── Example │ │ └── SocialFeed.php ├── tests │ └── SocialFeedTest.php └── vendor │ ├── autoload.php │ ├── bin │ └── phpunit │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_real.php │ ├── include_paths.php │ └── installed.json │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── CodeCoverage.php │ │ │ └── CodeCoverage │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HTML.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Iterator.php │ │ │ │ ├── PHP.php │ │ │ │ └── Text.php │ │ │ │ ├── Util.php │ │ │ │ ├── Util │ │ │ │ └── InvalidArgumentHelper.php │ │ │ │ └── Version.php │ │ ├── README.markdown │ │ ├── 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 │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ ├── phpunit.xml.dist │ │ └── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.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-composer.json │ │ └── package.xml │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Text │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ └── package.xml │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Timer.php │ │ │ └── Timer │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── README.md │ │ ├── Tests │ │ │ └── TimerTest.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ └── CachingFactory.php │ │ ├── README.md │ │ ├── Tests │ │ │ ├── Token │ │ │ │ ├── ClassTest.php │ │ │ │ ├── ClosureTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── IncludeTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ └── _files │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── closure.php │ │ │ │ ├── issue19.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── source.php │ │ │ │ ├── source2.php │ │ │ │ ├── source3.php │ │ │ │ ├── source4.php │ │ │ │ └── source5.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_object_method.tpl.dist │ │ │ │ ├── mocked_static_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 │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── invocation_static_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 │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ └── _files │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── AnInterface.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ ├── MethodCallback.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ ├── SomeClass.php │ │ │ │ └── StaticMockTestClass.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ └── phpunit │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── PHPUnit │ │ ├── Autoload.php │ │ ├── Autoload.php.in │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestCase │ │ │ │ └── Logger.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ ├── Functions.php │ │ │ │ └── Functions.php.in │ │ │ ├── AssertionFailedError.php │ │ │ ├── Comparator.php │ │ │ ├── Comparator │ │ │ │ ├── Array.php │ │ │ │ ├── DOMDocument.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 │ │ │ ├── OutputError.php │ │ │ ├── Process │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── 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 │ │ │ └── Warning.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Class.php │ │ │ ├── Configuration.php │ │ │ ├── DeprecatedFeature.php │ │ │ ├── DeprecatedFeature │ │ │ └── Logger.php │ │ │ ├── Diff.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 │ │ │ └── Windows.php │ │ │ ├── Printer.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ └── Text.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ ├── README.md │ │ ├── Tests │ │ ├── Extensions │ │ │ └── RepeatedTestTest.php │ │ ├── Framework │ │ │ ├── Assert │ │ │ │ └── FunctionsTest.php │ │ │ ├── AssertTest.php │ │ │ ├── ComparatorTest.php │ │ │ ├── Constraint │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ │ └── JsonMatchesTest.php │ │ │ ├── ConstraintTest.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 │ │ │ │ ├── 244.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ └── 863.phpt │ │ ├── Runner │ │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ │ ├── abstract-test-class.phpt │ │ │ ├── concrete-test-class.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-method-isolation.phpt │ │ │ ├── filter-method.phpt │ │ │ ├── filter-no-results.phpt │ │ │ ├── group-isolation.phpt │ │ │ ├── group.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── log-json.phpt │ │ │ ├── log-tap.phpt │ │ │ ├── log-xml.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 │ │ │ ├── ClassTest.php │ │ │ ├── ConfigurationTest.php │ │ │ ├── DiffTest.php │ │ │ ├── TestDox │ │ │ │ └── NamePrettifierTest.php │ │ │ ├── TestTest.php │ │ │ ├── TypeTest.php │ │ │ └── XMLTest.php │ │ └── _files │ │ │ ├── AbstractTest.php │ │ │ ├── Author.php │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── BankAccountTest.test.php │ │ │ ├── Book.php │ │ │ ├── Calculator.php │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ ├── ClassWithToString.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── ConcreteTest.php │ │ │ ├── DataProviderTest.php │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── Error.php │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ ├── ExceptionInSetUpTest.php │ │ │ ├── ExceptionInTearDownTest.php │ │ │ ├── ExceptionInTest.php │ │ │ ├── ExceptionNamespaceTest.php │ │ │ ├── ExceptionStack.php │ │ │ ├── ExceptionTest.php │ │ │ ├── Failure.php │ │ │ ├── FailureTest.php │ │ │ ├── FatalTest.php │ │ │ ├── IncompleteTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── JsonData │ │ │ ├── arrayObject.js │ │ │ ├── simpleObject.js │ │ │ └── simpleObject2.js │ │ │ ├── MockRunner.php │ │ │ ├── MultiDependencyTest.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ ├── NoTestCaseClass.php │ │ │ ├── NoTestCases.php │ │ │ ├── NonStatic.php │ │ │ ├── NotPublicTestCase.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── NothingTest.php │ │ │ ├── OneTestCase.php │ │ │ ├── OutputTestCase.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ ├── RequirementsTest.php │ │ │ ├── SampleClass.php │ │ │ ├── SelectorAssertionsFixture.html │ │ │ ├── Singleton.php │ │ │ ├── StackTest.php │ │ │ ├── Struct.php │ │ │ ├── Success.php │ │ │ ├── TemplateMethodsTest.php │ │ │ ├── TestIterator.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── WasRun.php │ │ │ ├── bar.xml │ │ │ ├── configuration.xml │ │ │ ├── configuration_xinclude.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── foo.xml │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ ├── structureExpected.xml │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ └── structureWrongNumberOfNodes.xml │ │ ├── build.xml │ │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── assertions.php │ │ ├── dependencies │ │ │ ├── DbUnit-1.2.3.tgz │ │ │ ├── File_Iterator-1.3.3.tgz │ │ │ ├── PHPUnit_MockObject-1.2.3.tgz │ │ │ ├── PHPUnit_Selenium-1.3.0.tgz │ │ │ ├── PHP_CodeCoverage-1.2.11.tgz │ │ │ ├── PHP_Invoker-1.1.2.tgz │ │ │ ├── PHP_Timer-1.0.4.tgz │ │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ │ ├── Text_Template-1.1.4.tgz │ │ │ └── Yaml-2.2.0.tgz │ │ ├── phar-autoload.php.in │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── composer │ │ └── bin │ │ │ └── phpunit │ │ ├── package.xml │ │ ├── phpdox.xml.dist │ │ ├── phpunit.bat │ │ ├── phpunit.php │ │ ├── phpunit.xml.dist │ │ └── phpunit.xsd │ └── symfony │ └── yaml │ └── Symfony │ └── Component │ └── 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 │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── part-2 ├── composer.json ├── composer.lock ├── phpunit.xml ├── src │ └── Example │ │ ├── SocialFeed.php │ │ └── TwitterFeedReader.php ├── tests │ ├── SocialFeedTest.php │ └── TwitterFeedReaderTest.php └── vendor │ ├── autoload.php │ ├── bin │ └── phpunit │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_real.php │ ├── include_paths.php │ └── installed.json │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── CodeCoverage.php │ │ │ └── CodeCoverage │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HTML.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Iterator.php │ │ │ │ ├── PHP.php │ │ │ │ └── Text.php │ │ │ │ ├── Util.php │ │ │ │ ├── Util │ │ │ │ └── InvalidArgumentHelper.php │ │ │ │ └── Version.php │ │ ├── README.markdown │ │ ├── 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 │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ ├── phpunit.xml.dist │ │ └── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.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-composer.json │ │ └── package.xml │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Text │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ └── package.xml │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Timer.php │ │ │ └── Timer │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── README.md │ │ ├── Tests │ │ │ └── TimerTest.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ └── CachingFactory.php │ │ ├── README.md │ │ ├── Tests │ │ │ ├── Token │ │ │ │ ├── ClassTest.php │ │ │ │ ├── ClosureTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── IncludeTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ └── _files │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── closure.php │ │ │ │ ├── issue19.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── source.php │ │ │ │ ├── source2.php │ │ │ │ ├── source3.php │ │ │ │ ├── source4.php │ │ │ │ └── source5.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_object_method.tpl.dist │ │ │ │ ├── mocked_static_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 │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── invocation_static_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 │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ └── _files │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── AnInterface.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ ├── MethodCallback.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ ├── SomeClass.php │ │ │ │ └── StaticMockTestClass.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ └── phpunit │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── PHPUnit │ │ ├── Autoload.php │ │ ├── Autoload.php.in │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestCase │ │ │ │ └── Logger.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ ├── Functions.php │ │ │ │ └── Functions.php.in │ │ │ ├── AssertionFailedError.php │ │ │ ├── Comparator.php │ │ │ ├── Comparator │ │ │ │ ├── Array.php │ │ │ │ ├── DOMDocument.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 │ │ │ ├── OutputError.php │ │ │ ├── Process │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── 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 │ │ │ └── Warning.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Class.php │ │ │ ├── Configuration.php │ │ │ ├── DeprecatedFeature.php │ │ │ ├── DeprecatedFeature │ │ │ └── Logger.php │ │ │ ├── Diff.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 │ │ │ └── Windows.php │ │ │ ├── Printer.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ └── Text.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ ├── README.md │ │ ├── Tests │ │ ├── Extensions │ │ │ └── RepeatedTestTest.php │ │ ├── Framework │ │ │ ├── Assert │ │ │ │ └── FunctionsTest.php │ │ │ ├── AssertTest.php │ │ │ ├── ComparatorTest.php │ │ │ ├── Constraint │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ │ └── JsonMatchesTest.php │ │ │ ├── ConstraintTest.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 │ │ │ │ ├── 244.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ └── 863.phpt │ │ ├── Runner │ │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ │ ├── abstract-test-class.phpt │ │ │ ├── concrete-test-class.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-method-isolation.phpt │ │ │ ├── filter-method.phpt │ │ │ ├── filter-no-results.phpt │ │ │ ├── group-isolation.phpt │ │ │ ├── group.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── log-json.phpt │ │ │ ├── log-tap.phpt │ │ │ ├── log-xml.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 │ │ │ ├── ClassTest.php │ │ │ ├── ConfigurationTest.php │ │ │ ├── DiffTest.php │ │ │ ├── TestDox │ │ │ │ └── NamePrettifierTest.php │ │ │ ├── TestTest.php │ │ │ ├── TypeTest.php │ │ │ └── XMLTest.php │ │ └── _files │ │ │ ├── AbstractTest.php │ │ │ ├── Author.php │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── BankAccountTest.test.php │ │ │ ├── Book.php │ │ │ ├── Calculator.php │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ ├── ClassWithToString.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── ConcreteTest.php │ │ │ ├── DataProviderTest.php │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── Error.php │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ ├── ExceptionInSetUpTest.php │ │ │ ├── ExceptionInTearDownTest.php │ │ │ ├── ExceptionInTest.php │ │ │ ├── ExceptionNamespaceTest.php │ │ │ ├── ExceptionStack.php │ │ │ ├── ExceptionTest.php │ │ │ ├── Failure.php │ │ │ ├── FailureTest.php │ │ │ ├── FatalTest.php │ │ │ ├── IncompleteTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── JsonData │ │ │ ├── arrayObject.js │ │ │ ├── simpleObject.js │ │ │ └── simpleObject2.js │ │ │ ├── MockRunner.php │ │ │ ├── MultiDependencyTest.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ ├── NoTestCaseClass.php │ │ │ ├── NoTestCases.php │ │ │ ├── NonStatic.php │ │ │ ├── NotPublicTestCase.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── NothingTest.php │ │ │ ├── OneTestCase.php │ │ │ ├── OutputTestCase.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ ├── RequirementsTest.php │ │ │ ├── SampleClass.php │ │ │ ├── SelectorAssertionsFixture.html │ │ │ ├── Singleton.php │ │ │ ├── StackTest.php │ │ │ ├── Struct.php │ │ │ ├── Success.php │ │ │ ├── TemplateMethodsTest.php │ │ │ ├── TestIterator.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── WasRun.php │ │ │ ├── bar.xml │ │ │ ├── configuration.xml │ │ │ ├── configuration_xinclude.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── foo.xml │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ ├── structureExpected.xml │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ └── structureWrongNumberOfNodes.xml │ │ ├── build.xml │ │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── assertions.php │ │ ├── dependencies │ │ │ ├── DbUnit-1.2.3.tgz │ │ │ ├── File_Iterator-1.3.3.tgz │ │ │ ├── PHPUnit_MockObject-1.2.3.tgz │ │ │ ├── PHPUnit_Selenium-1.3.0.tgz │ │ │ ├── PHP_CodeCoverage-1.2.11.tgz │ │ │ ├── PHP_Invoker-1.1.2.tgz │ │ │ ├── PHP_Timer-1.0.4.tgz │ │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ │ ├── Text_Template-1.1.4.tgz │ │ │ └── Yaml-2.2.0.tgz │ │ ├── phar-autoload.php.in │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── composer │ │ └── bin │ │ │ └── phpunit │ │ ├── package.xml │ │ ├── phpdox.xml.dist │ │ ├── phpunit.bat │ │ ├── phpunit.php │ │ ├── phpunit.xml.dist │ │ └── phpunit.xsd │ └── symfony │ └── yaml │ └── Symfony │ └── Component │ └── 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 │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── part-3 ├── composer.json ├── composer.lock ├── phpunit.xml ├── src │ └── Example │ │ ├── SocialFeed.php │ │ └── TwitterFeedReader.php ├── tests │ ├── SocialFeedTest.php │ └── TwitterFeedReaderTest.php └── vendor │ ├── autoload.php │ ├── bin │ └── phpunit │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_real.php │ ├── include_paths.php │ └── installed.json │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── CodeCoverage.php │ │ │ └── CodeCoverage │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HTML.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Iterator.php │ │ │ │ ├── PHP.php │ │ │ │ └── Text.php │ │ │ │ ├── Util.php │ │ │ │ ├── Util │ │ │ │ └── InvalidArgumentHelper.php │ │ │ │ └── Version.php │ │ ├── README.markdown │ │ ├── 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 │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ ├── phpunit.xml.dist │ │ └── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.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-composer.json │ │ └── package.xml │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Text │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ └── package.xml │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Timer.php │ │ │ └── Timer │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── README.md │ │ ├── Tests │ │ │ └── TimerTest.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ └── CachingFactory.php │ │ ├── README.md │ │ ├── Tests │ │ │ ├── Token │ │ │ │ ├── ClassTest.php │ │ │ │ ├── ClosureTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── IncludeTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ └── _files │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── closure.php │ │ │ │ ├── issue19.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── source.php │ │ │ │ ├── source2.php │ │ │ │ ├── source3.php │ │ │ │ ├── source4.php │ │ │ │ └── source5.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_object_method.tpl.dist │ │ │ │ ├── mocked_static_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 │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── invocation_static_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 │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ └── _files │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── AnInterface.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ ├── MethodCallback.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ ├── SomeClass.php │ │ │ │ └── StaticMockTestClass.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ └── phpunit │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── PHPUnit │ │ ├── Autoload.php │ │ ├── Autoload.php.in │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestCase │ │ │ │ └── Logger.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ ├── Functions.php │ │ │ │ └── Functions.php.in │ │ │ ├── AssertionFailedError.php │ │ │ ├── Comparator.php │ │ │ ├── Comparator │ │ │ │ ├── Array.php │ │ │ │ ├── DOMDocument.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 │ │ │ ├── OutputError.php │ │ │ ├── Process │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── 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 │ │ │ └── Warning.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Class.php │ │ │ ├── Configuration.php │ │ │ ├── DeprecatedFeature.php │ │ │ ├── DeprecatedFeature │ │ │ └── Logger.php │ │ │ ├── Diff.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 │ │ │ └── Windows.php │ │ │ ├── Printer.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ └── Text.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ ├── README.md │ │ ├── Tests │ │ ├── Extensions │ │ │ └── RepeatedTestTest.php │ │ ├── Framework │ │ │ ├── Assert │ │ │ │ └── FunctionsTest.php │ │ │ ├── AssertTest.php │ │ │ ├── ComparatorTest.php │ │ │ ├── Constraint │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ │ └── JsonMatchesTest.php │ │ │ ├── ConstraintTest.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 │ │ │ │ ├── 244.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ └── 863.phpt │ │ ├── Runner │ │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ │ ├── abstract-test-class.phpt │ │ │ ├── concrete-test-class.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-method-isolation.phpt │ │ │ ├── filter-method.phpt │ │ │ ├── filter-no-results.phpt │ │ │ ├── group-isolation.phpt │ │ │ ├── group.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── log-json.phpt │ │ │ ├── log-tap.phpt │ │ │ ├── log-xml.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 │ │ │ ├── ClassTest.php │ │ │ ├── ConfigurationTest.php │ │ │ ├── DiffTest.php │ │ │ ├── TestDox │ │ │ │ └── NamePrettifierTest.php │ │ │ ├── TestTest.php │ │ │ ├── TypeTest.php │ │ │ └── XMLTest.php │ │ └── _files │ │ │ ├── AbstractTest.php │ │ │ ├── Author.php │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── BankAccountTest.test.php │ │ │ ├── Book.php │ │ │ ├── Calculator.php │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ ├── ClassWithToString.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── ConcreteTest.php │ │ │ ├── DataProviderTest.php │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── Error.php │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ ├── ExceptionInSetUpTest.php │ │ │ ├── ExceptionInTearDownTest.php │ │ │ ├── ExceptionInTest.php │ │ │ ├── ExceptionNamespaceTest.php │ │ │ ├── ExceptionStack.php │ │ │ ├── ExceptionTest.php │ │ │ ├── Failure.php │ │ │ ├── FailureTest.php │ │ │ ├── FatalTest.php │ │ │ ├── IncompleteTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── JsonData │ │ │ ├── arrayObject.js │ │ │ ├── simpleObject.js │ │ │ └── simpleObject2.js │ │ │ ├── MockRunner.php │ │ │ ├── MultiDependencyTest.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ ├── NoTestCaseClass.php │ │ │ ├── NoTestCases.php │ │ │ ├── NonStatic.php │ │ │ ├── NotPublicTestCase.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── NothingTest.php │ │ │ ├── OneTestCase.php │ │ │ ├── OutputTestCase.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ ├── RequirementsTest.php │ │ │ ├── SampleClass.php │ │ │ ├── SelectorAssertionsFixture.html │ │ │ ├── Singleton.php │ │ │ ├── StackTest.php │ │ │ ├── Struct.php │ │ │ ├── Success.php │ │ │ ├── TemplateMethodsTest.php │ │ │ ├── TestIterator.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── WasRun.php │ │ │ ├── bar.xml │ │ │ ├── configuration.xml │ │ │ ├── configuration_xinclude.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── foo.xml │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ ├── structureExpected.xml │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ └── structureWrongNumberOfNodes.xml │ │ ├── build.xml │ │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── assertions.php │ │ ├── dependencies │ │ │ ├── DbUnit-1.2.3.tgz │ │ │ ├── File_Iterator-1.3.3.tgz │ │ │ ├── PHPUnit_MockObject-1.2.3.tgz │ │ │ ├── PHPUnit_Selenium-1.3.0.tgz │ │ │ ├── PHP_CodeCoverage-1.2.11.tgz │ │ │ ├── PHP_Invoker-1.1.2.tgz │ │ │ ├── PHP_Timer-1.0.4.tgz │ │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ │ ├── Text_Template-1.1.4.tgz │ │ │ └── Yaml-2.2.0.tgz │ │ ├── phar-autoload.php.in │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── composer │ │ └── bin │ │ │ └── phpunit │ │ ├── package.xml │ │ ├── phpdox.xml.dist │ │ ├── phpunit.bat │ │ ├── phpunit.php │ │ ├── phpunit.xml.dist │ │ └── phpunit.xsd │ └── symfony │ └── yaml │ └── Symfony │ └── Component │ └── 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 │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── part-4 ├── composer.json ├── composer.lock ├── phpunit.xml ├── src │ └── Example │ │ ├── SocialFeed.php │ │ └── TwitterFeedReader.php ├── tests │ ├── SocialFeedTest.php │ └── TwitterFeedReaderTest.php └── vendor │ ├── autoload.php │ ├── bin │ └── phpunit │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_real.php │ ├── include_paths.php │ └── installed.json │ ├── mockery │ └── mockery │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── composer.json │ │ ├── examples │ │ └── starship │ │ │ ├── Bootstrap.php │ │ │ ├── Starship.php │ │ │ ├── StarshipTest.php │ │ │ └── phpunit.xml │ │ ├── library │ │ ├── Mockery.php │ │ └── Mockery │ │ │ ├── Adapter │ │ │ └── Phpunit │ │ │ │ └── TestListener.php │ │ │ ├── CompositeExpectation.php │ │ │ ├── Configuration.php │ │ │ ├── Container.php │ │ │ ├── CountValidator │ │ │ ├── AtLeast.php │ │ │ ├── AtMost.php │ │ │ ├── CountValidatorAbstract.php │ │ │ ├── Exact.php │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── InvalidCountException.php │ │ │ ├── InvalidOrderException.php │ │ │ └── NoMatchingExpectationException.php │ │ │ ├── Expectation.php │ │ │ ├── ExpectationDirector.php │ │ │ ├── Generator.php │ │ │ ├── Loader.php │ │ │ ├── Matcher │ │ │ ├── Any.php │ │ │ ├── AnyOf.php │ │ │ ├── Closure.php │ │ │ ├── Contains.php │ │ │ ├── Ducktype.php │ │ │ ├── HasKey.php │ │ │ ├── HasValue.php │ │ │ ├── MatcherAbstract.php │ │ │ ├── MustBe.php │ │ │ ├── Not.php │ │ │ ├── NotAnyOf.php │ │ │ ├── Subset.php │ │ │ └── Type.php │ │ │ ├── Mock.php │ │ │ ├── MockInterface.php │ │ │ ├── Recorder.php │ │ │ └── Undefined.php │ │ ├── package.xml │ │ └── tests │ │ ├── Bootstrap.php │ │ ├── Mockery │ │ ├── AdhocTest.php │ │ ├── ContainerTest.php │ │ ├── ExpectationTest.php │ │ ├── HamcrestExpectationTest.php │ │ ├── LoaderTest.php │ │ ├── MockTest.php │ │ ├── RecorderTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ │ └── file.txt │ │ └── phpunit.xml │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── CodeCoverage.php │ │ │ └── CodeCoverage │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HTML.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Iterator.php │ │ │ │ ├── PHP.php │ │ │ │ └── Text.php │ │ │ │ ├── Util.php │ │ │ │ ├── Util │ │ │ │ └── InvalidArgumentHelper.php │ │ │ │ └── Version.php │ │ ├── README.markdown │ │ ├── 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 │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ ├── phpunit.xml.dist │ │ └── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.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-composer.json │ │ └── package.xml │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Text │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ └── package.xml │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Timer.php │ │ │ └── Timer │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── README.md │ │ ├── Tests │ │ │ └── TimerTest.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ └── CachingFactory.php │ │ ├── README.md │ │ ├── Tests │ │ │ ├── Token │ │ │ │ ├── ClassTest.php │ │ │ │ ├── ClosureTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── IncludeTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ └── _files │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── closure.php │ │ │ │ ├── issue19.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── source.php │ │ │ │ ├── source2.php │ │ │ │ ├── source3.php │ │ │ │ ├── source4.php │ │ │ │ └── source5.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_object_method.tpl.dist │ │ │ │ ├── mocked_static_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 │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── invocation_static_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 │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ └── _files │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── AnInterface.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ ├── MethodCallback.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ ├── SomeClass.php │ │ │ │ └── StaticMockTestClass.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ └── phpunit │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── PHPUnit │ │ ├── Autoload.php │ │ ├── Autoload.php.in │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestCase │ │ │ │ └── Logger.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ ├── Functions.php │ │ │ │ └── Functions.php.in │ │ │ ├── AssertionFailedError.php │ │ │ ├── Comparator.php │ │ │ ├── Comparator │ │ │ │ ├── Array.php │ │ │ │ ├── DOMDocument.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 │ │ │ ├── OutputError.php │ │ │ ├── Process │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── 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 │ │ │ └── Warning.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Class.php │ │ │ ├── Configuration.php │ │ │ ├── DeprecatedFeature.php │ │ │ ├── DeprecatedFeature │ │ │ └── Logger.php │ │ │ ├── Diff.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 │ │ │ └── Windows.php │ │ │ ├── Printer.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ └── Text.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ ├── README.md │ │ ├── Tests │ │ ├── Extensions │ │ │ └── RepeatedTestTest.php │ │ ├── Framework │ │ │ ├── Assert │ │ │ │ └── FunctionsTest.php │ │ │ ├── AssertTest.php │ │ │ ├── ComparatorTest.php │ │ │ ├── Constraint │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ │ └── JsonMatchesTest.php │ │ │ ├── ConstraintTest.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 │ │ │ │ ├── 244.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ └── 863.phpt │ │ ├── Runner │ │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ │ ├── abstract-test-class.phpt │ │ │ ├── concrete-test-class.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-method-isolation.phpt │ │ │ ├── filter-method.phpt │ │ │ ├── filter-no-results.phpt │ │ │ ├── group-isolation.phpt │ │ │ ├── group.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── log-json.phpt │ │ │ ├── log-tap.phpt │ │ │ ├── log-xml.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 │ │ │ ├── ClassTest.php │ │ │ ├── ConfigurationTest.php │ │ │ ├── DiffTest.php │ │ │ ├── TestDox │ │ │ │ └── NamePrettifierTest.php │ │ │ ├── TestTest.php │ │ │ ├── TypeTest.php │ │ │ └── XMLTest.php │ │ └── _files │ │ │ ├── AbstractTest.php │ │ │ ├── Author.php │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── BankAccountTest.test.php │ │ │ ├── Book.php │ │ │ ├── Calculator.php │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ ├── ClassWithToString.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── ConcreteTest.php │ │ │ ├── DataProviderTest.php │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── Error.php │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ ├── ExceptionInSetUpTest.php │ │ │ ├── ExceptionInTearDownTest.php │ │ │ ├── ExceptionInTest.php │ │ │ ├── ExceptionNamespaceTest.php │ │ │ ├── ExceptionStack.php │ │ │ ├── ExceptionTest.php │ │ │ ├── Failure.php │ │ │ ├── FailureTest.php │ │ │ ├── FatalTest.php │ │ │ ├── IncompleteTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── JsonData │ │ │ ├── arrayObject.js │ │ │ ├── simpleObject.js │ │ │ └── simpleObject2.js │ │ │ ├── MockRunner.php │ │ │ ├── MultiDependencyTest.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ ├── NoTestCaseClass.php │ │ │ ├── NoTestCases.php │ │ │ ├── NonStatic.php │ │ │ ├── NotPublicTestCase.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── NothingTest.php │ │ │ ├── OneTestCase.php │ │ │ ├── OutputTestCase.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ ├── RequirementsTest.php │ │ │ ├── SampleClass.php │ │ │ ├── SelectorAssertionsFixture.html │ │ │ ├── Singleton.php │ │ │ ├── StackTest.php │ │ │ ├── Struct.php │ │ │ ├── Success.php │ │ │ ├── TemplateMethodsTest.php │ │ │ ├── TestIterator.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── WasRun.php │ │ │ ├── bar.xml │ │ │ ├── configuration.xml │ │ │ ├── configuration_xinclude.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── foo.xml │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ ├── structureExpected.xml │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ └── structureWrongNumberOfNodes.xml │ │ ├── build.xml │ │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── assertions.php │ │ ├── dependencies │ │ │ ├── DbUnit-1.2.3.tgz │ │ │ ├── File_Iterator-1.3.3.tgz │ │ │ ├── PHPUnit_MockObject-1.2.3.tgz │ │ │ ├── PHPUnit_Selenium-1.3.0.tgz │ │ │ ├── PHP_CodeCoverage-1.2.11.tgz │ │ │ ├── PHP_Invoker-1.1.2.tgz │ │ │ ├── PHP_Timer-1.0.4.tgz │ │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ │ ├── Text_Template-1.1.4.tgz │ │ │ └── Yaml-2.2.0.tgz │ │ ├── phar-autoload.php.in │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── composer │ │ └── bin │ │ │ └── phpunit │ │ ├── package.xml │ │ ├── phpdox.xml.dist │ │ ├── phpunit.bat │ │ ├── phpunit.php │ │ ├── phpunit.xml.dist │ │ └── phpunit.xsd │ └── symfony │ └── yaml │ └── Symfony │ └── Component │ └── 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 │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── part-5 ├── composer.json ├── composer.lock ├── phpunit.xml ├── src │ └── Example │ │ ├── SocialFeed.php │ │ └── TwitterFeedReader.php ├── tests │ ├── SocialFeedTest.php │ └── TwitterFeedReaderTest.php └── vendor │ ├── autoload.php │ ├── bin │ └── phpunit │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_real.php │ ├── include_paths.php │ └── installed.json │ ├── mockery │ └── mockery │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── composer.json │ │ ├── examples │ │ └── starship │ │ │ ├── Bootstrap.php │ │ │ ├── Starship.php │ │ │ ├── StarshipTest.php │ │ │ └── phpunit.xml │ │ ├── library │ │ ├── Mockery.php │ │ └── Mockery │ │ │ ├── Adapter │ │ │ └── Phpunit │ │ │ │ └── TestListener.php │ │ │ ├── CompositeExpectation.php │ │ │ ├── Configuration.php │ │ │ ├── Container.php │ │ │ ├── CountValidator │ │ │ ├── AtLeast.php │ │ │ ├── AtMost.php │ │ │ ├── CountValidatorAbstract.php │ │ │ ├── Exact.php │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── InvalidCountException.php │ │ │ ├── InvalidOrderException.php │ │ │ └── NoMatchingExpectationException.php │ │ │ ├── Expectation.php │ │ │ ├── ExpectationDirector.php │ │ │ ├── Generator.php │ │ │ ├── Loader.php │ │ │ ├── Matcher │ │ │ ├── Any.php │ │ │ ├── AnyOf.php │ │ │ ├── Closure.php │ │ │ ├── Contains.php │ │ │ ├── Ducktype.php │ │ │ ├── HasKey.php │ │ │ ├── HasValue.php │ │ │ ├── MatcherAbstract.php │ │ │ ├── MustBe.php │ │ │ ├── Not.php │ │ │ ├── NotAnyOf.php │ │ │ ├── Subset.php │ │ │ └── Type.php │ │ │ ├── Mock.php │ │ │ ├── MockInterface.php │ │ │ ├── Recorder.php │ │ │ └── Undefined.php │ │ ├── package.xml │ │ └── tests │ │ ├── Bootstrap.php │ │ ├── Mockery │ │ ├── AdhocTest.php │ │ ├── ContainerTest.php │ │ ├── ExpectationTest.php │ │ ├── HamcrestExpectationTest.php │ │ ├── LoaderTest.php │ │ ├── MockTest.php │ │ ├── RecorderTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ │ └── file.txt │ │ └── phpunit.xml │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── CodeCoverage.php │ │ │ └── CodeCoverage │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HTML.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Iterator.php │ │ │ │ ├── PHP.php │ │ │ │ └── Text.php │ │ │ │ ├── Util.php │ │ │ │ ├── Util │ │ │ │ └── InvalidArgumentHelper.php │ │ │ │ └── Version.php │ │ ├── README.markdown │ │ ├── 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 │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ ├── phpunit.xml.dist │ │ └── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.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-composer.json │ │ └── package.xml │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Text │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ └── package.xml │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Timer.php │ │ │ └── Timer │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── README.md │ │ ├── Tests │ │ │ └── TimerTest.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ └── CachingFactory.php │ │ ├── README.md │ │ ├── Tests │ │ │ ├── Token │ │ │ │ ├── ClassTest.php │ │ │ │ ├── ClosureTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── IncludeTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ └── _files │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── closure.php │ │ │ │ ├── issue19.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── source.php │ │ │ │ ├── source2.php │ │ │ │ ├── source3.php │ │ │ │ ├── source4.php │ │ │ │ └── source5.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_object_method.tpl.dist │ │ │ │ ├── mocked_static_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 │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── invocation_static_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 │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ └── _files │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── AnInterface.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ ├── MethodCallback.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ ├── SomeClass.php │ │ │ │ └── StaticMockTestClass.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ └── phpunit │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── PHPUnit │ │ ├── Autoload.php │ │ ├── Autoload.php.in │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestCase │ │ │ │ └── Logger.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ ├── Functions.php │ │ │ │ └── Functions.php.in │ │ │ ├── AssertionFailedError.php │ │ │ ├── Comparator.php │ │ │ ├── Comparator │ │ │ │ ├── Array.php │ │ │ │ ├── DOMDocument.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 │ │ │ ├── OutputError.php │ │ │ ├── Process │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── 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 │ │ │ └── Warning.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Class.php │ │ │ ├── Configuration.php │ │ │ ├── DeprecatedFeature.php │ │ │ ├── DeprecatedFeature │ │ │ └── Logger.php │ │ │ ├── Diff.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 │ │ │ └── Windows.php │ │ │ ├── Printer.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ └── Text.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ ├── README.md │ │ ├── Tests │ │ ├── Extensions │ │ │ └── RepeatedTestTest.php │ │ ├── Framework │ │ │ ├── Assert │ │ │ │ └── FunctionsTest.php │ │ │ ├── AssertTest.php │ │ │ ├── ComparatorTest.php │ │ │ ├── Constraint │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ │ └── JsonMatchesTest.php │ │ │ ├── ConstraintTest.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 │ │ │ │ ├── 244.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ └── 863.phpt │ │ ├── Runner │ │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ │ ├── abstract-test-class.phpt │ │ │ ├── concrete-test-class.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-method-isolation.phpt │ │ │ ├── filter-method.phpt │ │ │ ├── filter-no-results.phpt │ │ │ ├── group-isolation.phpt │ │ │ ├── group.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── log-json.phpt │ │ │ ├── log-tap.phpt │ │ │ ├── log-xml.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 │ │ │ ├── ClassTest.php │ │ │ ├── ConfigurationTest.php │ │ │ ├── DiffTest.php │ │ │ ├── TestDox │ │ │ │ └── NamePrettifierTest.php │ │ │ ├── TestTest.php │ │ │ ├── TypeTest.php │ │ │ └── XMLTest.php │ │ └── _files │ │ │ ├── AbstractTest.php │ │ │ ├── Author.php │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── BankAccountTest.test.php │ │ │ ├── Book.php │ │ │ ├── Calculator.php │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ ├── ClassWithToString.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── ConcreteTest.php │ │ │ ├── DataProviderTest.php │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── Error.php │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ ├── ExceptionInSetUpTest.php │ │ │ ├── ExceptionInTearDownTest.php │ │ │ ├── ExceptionInTest.php │ │ │ ├── ExceptionNamespaceTest.php │ │ │ ├── ExceptionStack.php │ │ │ ├── ExceptionTest.php │ │ │ ├── Failure.php │ │ │ ├── FailureTest.php │ │ │ ├── FatalTest.php │ │ │ ├── IncompleteTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── JsonData │ │ │ ├── arrayObject.js │ │ │ ├── simpleObject.js │ │ │ └── simpleObject2.js │ │ │ ├── MockRunner.php │ │ │ ├── MultiDependencyTest.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ ├── NoTestCaseClass.php │ │ │ ├── NoTestCases.php │ │ │ ├── NonStatic.php │ │ │ ├── NotPublicTestCase.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── NothingTest.php │ │ │ ├── OneTestCase.php │ │ │ ├── OutputTestCase.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ ├── RequirementsTest.php │ │ │ ├── SampleClass.php │ │ │ ├── SelectorAssertionsFixture.html │ │ │ ├── Singleton.php │ │ │ ├── StackTest.php │ │ │ ├── Struct.php │ │ │ ├── Success.php │ │ │ ├── TemplateMethodsTest.php │ │ │ ├── TestIterator.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── WasRun.php │ │ │ ├── bar.xml │ │ │ ├── configuration.xml │ │ │ ├── configuration_xinclude.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── foo.xml │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ ├── structureExpected.xml │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ └── structureWrongNumberOfNodes.xml │ │ ├── build.xml │ │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── assertions.php │ │ ├── dependencies │ │ │ ├── DbUnit-1.2.3.tgz │ │ │ ├── File_Iterator-1.3.3.tgz │ │ │ ├── PHPUnit_MockObject-1.2.3.tgz │ │ │ ├── PHPUnit_Selenium-1.3.0.tgz │ │ │ ├── PHP_CodeCoverage-1.2.11.tgz │ │ │ ├── PHP_Invoker-1.1.2.tgz │ │ │ ├── PHP_Timer-1.0.4.tgz │ │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ │ ├── Text_Template-1.1.4.tgz │ │ │ └── Yaml-2.2.0.tgz │ │ ├── phar-autoload.php.in │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── composer │ │ └── bin │ │ │ └── phpunit │ │ ├── package.xml │ │ ├── phpdox.xml.dist │ │ ├── phpunit.bat │ │ ├── phpunit.php │ │ ├── phpunit.xml.dist │ │ └── phpunit.xsd │ └── symfony │ └── yaml │ └── Symfony │ └── Component │ └── 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 │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── part-6 ├── composer.json ├── composer.lock ├── phpunit.xml ├── src │ └── Example │ │ ├── SocialFeed.php │ │ └── TwitterFeedReader.php ├── tests │ ├── SocialFeedTest.php │ └── TwitterFeedReaderTest.php └── vendor │ ├── autoload.php │ ├── bin │ └── phpunit │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_real.php │ ├── include_paths.php │ └── installed.json │ ├── mockery │ └── mockery │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── composer.json │ │ ├── examples │ │ └── starship │ │ │ ├── Bootstrap.php │ │ │ ├── Starship.php │ │ │ ├── StarshipTest.php │ │ │ └── phpunit.xml │ │ ├── library │ │ ├── Mockery.php │ │ └── Mockery │ │ │ ├── Adapter │ │ │ └── Phpunit │ │ │ │ └── TestListener.php │ │ │ ├── CompositeExpectation.php │ │ │ ├── Configuration.php │ │ │ ├── Container.php │ │ │ ├── CountValidator │ │ │ ├── AtLeast.php │ │ │ ├── AtMost.php │ │ │ ├── CountValidatorAbstract.php │ │ │ ├── Exact.php │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── InvalidCountException.php │ │ │ ├── InvalidOrderException.php │ │ │ └── NoMatchingExpectationException.php │ │ │ ├── Expectation.php │ │ │ ├── ExpectationDirector.php │ │ │ ├── Generator.php │ │ │ ├── Loader.php │ │ │ ├── Matcher │ │ │ ├── Any.php │ │ │ ├── AnyOf.php │ │ │ ├── Closure.php │ │ │ ├── Contains.php │ │ │ ├── Ducktype.php │ │ │ ├── HasKey.php │ │ │ ├── HasValue.php │ │ │ ├── MatcherAbstract.php │ │ │ ├── MustBe.php │ │ │ ├── Not.php │ │ │ ├── NotAnyOf.php │ │ │ ├── Subset.php │ │ │ └── Type.php │ │ │ ├── Mock.php │ │ │ ├── MockInterface.php │ │ │ ├── Recorder.php │ │ │ └── Undefined.php │ │ ├── package.xml │ │ └── tests │ │ ├── Bootstrap.php │ │ ├── Mockery │ │ ├── AdhocTest.php │ │ ├── ContainerTest.php │ │ ├── ExpectationTest.php │ │ ├── HamcrestExpectationTest.php │ │ ├── LoaderTest.php │ │ ├── MockTest.php │ │ ├── RecorderTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ │ └── file.txt │ │ └── phpunit.xml │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── CodeCoverage.php │ │ │ └── CodeCoverage │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HTML.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Iterator.php │ │ │ │ ├── PHP.php │ │ │ │ └── Text.php │ │ │ │ ├── Util.php │ │ │ │ ├── Util │ │ │ │ └── InvalidArgumentHelper.php │ │ │ │ └── Version.php │ │ ├── README.markdown │ │ ├── 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 │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ ├── phpunit.xml.dist │ │ └── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.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-composer.json │ │ └── package.xml │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Text │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ └── package.xml │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Timer.php │ │ │ └── Timer │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── README.md │ │ ├── Tests │ │ │ └── TimerTest.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ └── CachingFactory.php │ │ ├── README.md │ │ ├── Tests │ │ │ ├── Token │ │ │ │ ├── ClassTest.php │ │ │ │ ├── ClosureTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── IncludeTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ └── _files │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── closure.php │ │ │ │ ├── issue19.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── source.php │ │ │ │ ├── source2.php │ │ │ │ ├── source3.php │ │ │ │ ├── source4.php │ │ │ │ └── source5.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_object_method.tpl.dist │ │ │ │ ├── mocked_static_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 │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── invocation_static_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 │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ └── _files │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── AnInterface.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ ├── MethodCallback.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ ├── SomeClass.php │ │ │ │ └── StaticMockTestClass.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ └── phpunit │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── PHPUnit │ │ ├── Autoload.php │ │ ├── Autoload.php.in │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestCase │ │ │ │ └── Logger.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ ├── Functions.php │ │ │ │ └── Functions.php.in │ │ │ ├── AssertionFailedError.php │ │ │ ├── Comparator.php │ │ │ ├── Comparator │ │ │ │ ├── Array.php │ │ │ │ ├── DOMDocument.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 │ │ │ ├── OutputError.php │ │ │ ├── Process │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── 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 │ │ │ └── Warning.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Class.php │ │ │ ├── Configuration.php │ │ │ ├── DeprecatedFeature.php │ │ │ ├── DeprecatedFeature │ │ │ └── Logger.php │ │ │ ├── Diff.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 │ │ │ └── Windows.php │ │ │ ├── Printer.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ └── Text.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ ├── README.md │ │ ├── Tests │ │ ├── Extensions │ │ │ └── RepeatedTestTest.php │ │ ├── Framework │ │ │ ├── Assert │ │ │ │ └── FunctionsTest.php │ │ │ ├── AssertTest.php │ │ │ ├── ComparatorTest.php │ │ │ ├── Constraint │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ │ └── JsonMatchesTest.php │ │ │ ├── ConstraintTest.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 │ │ │ │ ├── 244.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ └── 863.phpt │ │ ├── Runner │ │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ │ ├── abstract-test-class.phpt │ │ │ ├── concrete-test-class.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-method-isolation.phpt │ │ │ ├── filter-method.phpt │ │ │ ├── filter-no-results.phpt │ │ │ ├── group-isolation.phpt │ │ │ ├── group.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── log-json.phpt │ │ │ ├── log-tap.phpt │ │ │ ├── log-xml.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 │ │ │ ├── ClassTest.php │ │ │ ├── ConfigurationTest.php │ │ │ ├── DiffTest.php │ │ │ ├── TestDox │ │ │ │ └── NamePrettifierTest.php │ │ │ ├── TestTest.php │ │ │ ├── TypeTest.php │ │ │ └── XMLTest.php │ │ └── _files │ │ │ ├── AbstractTest.php │ │ │ ├── Author.php │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── BankAccountTest.test.php │ │ │ ├── Book.php │ │ │ ├── Calculator.php │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ ├── ClassWithToString.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── ConcreteTest.php │ │ │ ├── DataProviderTest.php │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── Error.php │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ ├── ExceptionInSetUpTest.php │ │ │ ├── ExceptionInTearDownTest.php │ │ │ ├── ExceptionInTest.php │ │ │ ├── ExceptionNamespaceTest.php │ │ │ ├── ExceptionStack.php │ │ │ ├── ExceptionTest.php │ │ │ ├── Failure.php │ │ │ ├── FailureTest.php │ │ │ ├── FatalTest.php │ │ │ ├── IncompleteTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── JsonData │ │ │ ├── arrayObject.js │ │ │ ├── simpleObject.js │ │ │ └── simpleObject2.js │ │ │ ├── MockRunner.php │ │ │ ├── MultiDependencyTest.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ ├── NoTestCaseClass.php │ │ │ ├── NoTestCases.php │ │ │ ├── NonStatic.php │ │ │ ├── NotPublicTestCase.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── NothingTest.php │ │ │ ├── OneTestCase.php │ │ │ ├── OutputTestCase.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ ├── RequirementsTest.php │ │ │ ├── SampleClass.php │ │ │ ├── SelectorAssertionsFixture.html │ │ │ ├── Singleton.php │ │ │ ├── StackTest.php │ │ │ ├── Struct.php │ │ │ ├── Success.php │ │ │ ├── TemplateMethodsTest.php │ │ │ ├── TestIterator.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── WasRun.php │ │ │ ├── bar.xml │ │ │ ├── configuration.xml │ │ │ ├── configuration_xinclude.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── foo.xml │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ ├── structureExpected.xml │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ └── structureWrongNumberOfNodes.xml │ │ ├── build.xml │ │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── assertions.php │ │ ├── dependencies │ │ │ ├── DbUnit-1.2.3.tgz │ │ │ ├── File_Iterator-1.3.3.tgz │ │ │ ├── PHPUnit_MockObject-1.2.3.tgz │ │ │ ├── PHPUnit_Selenium-1.3.0.tgz │ │ │ ├── PHP_CodeCoverage-1.2.11.tgz │ │ │ ├── PHP_Invoker-1.1.2.tgz │ │ │ ├── PHP_Timer-1.0.4.tgz │ │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ │ ├── Text_Template-1.1.4.tgz │ │ │ └── Yaml-2.2.0.tgz │ │ ├── phar-autoload.php.in │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── composer │ │ └── bin │ │ │ └── phpunit │ │ ├── package.xml │ │ ├── phpdox.xml.dist │ │ ├── phpunit.bat │ │ ├── phpunit.php │ │ ├── phpunit.xml.dist │ │ └── phpunit.xsd │ └── symfony │ └── yaml │ └── Symfony │ └── Component │ └── 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 │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── part-7 ├── composer.json ├── composer.lock ├── phpunit.xml ├── src │ └── Example │ │ ├── FacebookFeedReader.php │ │ ├── SocialFeed.php │ │ └── TwitterFeedReader.php ├── tests │ ├── FacebookFeedReaderTest.php │ ├── SocialFeedTest.php │ └── TwitterFeedReaderTest.php └── vendor │ ├── autoload.php │ ├── bin │ └── phpunit │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_real.php │ ├── include_paths.php │ └── installed.json │ ├── mockery │ └── mockery │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── composer.json │ │ ├── examples │ │ └── starship │ │ │ ├── Bootstrap.php │ │ │ ├── Starship.php │ │ │ ├── StarshipTest.php │ │ │ └── phpunit.xml │ │ ├── library │ │ ├── Mockery.php │ │ └── Mockery │ │ │ ├── Adapter │ │ │ └── Phpunit │ │ │ │ └── TestListener.php │ │ │ ├── CompositeExpectation.php │ │ │ ├── Configuration.php │ │ │ ├── Container.php │ │ │ ├── CountValidator │ │ │ ├── AtLeast.php │ │ │ ├── AtMost.php │ │ │ ├── CountValidatorAbstract.php │ │ │ ├── Exact.php │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── InvalidCountException.php │ │ │ ├── InvalidOrderException.php │ │ │ └── NoMatchingExpectationException.php │ │ │ ├── Expectation.php │ │ │ ├── ExpectationDirector.php │ │ │ ├── Generator.php │ │ │ ├── Loader.php │ │ │ ├── Matcher │ │ │ ├── Any.php │ │ │ ├── AnyOf.php │ │ │ ├── Closure.php │ │ │ ├── Contains.php │ │ │ ├── Ducktype.php │ │ │ ├── HasKey.php │ │ │ ├── HasValue.php │ │ │ ├── MatcherAbstract.php │ │ │ ├── MustBe.php │ │ │ ├── Not.php │ │ │ ├── NotAnyOf.php │ │ │ ├── Subset.php │ │ │ └── Type.php │ │ │ ├── Mock.php │ │ │ ├── MockInterface.php │ │ │ ├── Recorder.php │ │ │ └── Undefined.php │ │ ├── package.xml │ │ └── tests │ │ ├── Bootstrap.php │ │ ├── Mockery │ │ ├── AdhocTest.php │ │ ├── ContainerTest.php │ │ ├── ExpectationTest.php │ │ ├── HamcrestExpectationTest.php │ │ ├── LoaderTest.php │ │ ├── MockTest.php │ │ ├── RecorderTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ │ └── file.txt │ │ └── phpunit.xml │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── CodeCoverage.php │ │ │ └── CodeCoverage │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HTML.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Iterator.php │ │ │ │ ├── PHP.php │ │ │ │ └── Text.php │ │ │ │ ├── Util.php │ │ │ │ ├── Util │ │ │ │ └── InvalidArgumentHelper.php │ │ │ │ └── Version.php │ │ ├── README.markdown │ │ ├── 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 │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ ├── phpunit.xml.dist │ │ └── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.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-composer.json │ │ └── package.xml │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Text │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ └── package.xml │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Timer.php │ │ │ └── Timer │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── README.md │ │ ├── Tests │ │ │ └── TimerTest.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ └── CachingFactory.php │ │ ├── README.md │ │ ├── Tests │ │ │ ├── Token │ │ │ │ ├── ClassTest.php │ │ │ │ ├── ClosureTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── IncludeTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ └── _files │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── closure.php │ │ │ │ ├── issue19.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── source.php │ │ │ │ ├── source2.php │ │ │ │ ├── source3.php │ │ │ │ ├── source4.php │ │ │ │ └── source5.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_object_method.tpl.dist │ │ │ │ ├── mocked_static_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 │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── invocation_static_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 │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ └── _files │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── AnInterface.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ ├── MethodCallback.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ ├── SomeClass.php │ │ │ │ └── StaticMockTestClass.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ └── phpunit │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── PHPUnit │ │ ├── Autoload.php │ │ ├── Autoload.php.in │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestCase │ │ │ │ └── Logger.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ ├── Functions.php │ │ │ │ └── Functions.php.in │ │ │ ├── AssertionFailedError.php │ │ │ ├── Comparator.php │ │ │ ├── Comparator │ │ │ │ ├── Array.php │ │ │ │ ├── DOMDocument.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 │ │ │ ├── OutputError.php │ │ │ ├── Process │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── 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 │ │ │ └── Warning.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Class.php │ │ │ ├── Configuration.php │ │ │ ├── DeprecatedFeature.php │ │ │ ├── DeprecatedFeature │ │ │ └── Logger.php │ │ │ ├── Diff.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 │ │ │ └── Windows.php │ │ │ ├── Printer.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ └── Text.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ ├── README.md │ │ ├── Tests │ │ ├── Extensions │ │ │ └── RepeatedTestTest.php │ │ ├── Framework │ │ │ ├── Assert │ │ │ │ └── FunctionsTest.php │ │ │ ├── AssertTest.php │ │ │ ├── ComparatorTest.php │ │ │ ├── Constraint │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ │ └── JsonMatchesTest.php │ │ │ ├── ConstraintTest.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 │ │ │ │ ├── 244.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ └── 863.phpt │ │ ├── Runner │ │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ │ ├── abstract-test-class.phpt │ │ │ ├── concrete-test-class.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-method-isolation.phpt │ │ │ ├── filter-method.phpt │ │ │ ├── filter-no-results.phpt │ │ │ ├── group-isolation.phpt │ │ │ ├── group.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── log-json.phpt │ │ │ ├── log-tap.phpt │ │ │ ├── log-xml.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 │ │ │ ├── ClassTest.php │ │ │ ├── ConfigurationTest.php │ │ │ ├── DiffTest.php │ │ │ ├── TestDox │ │ │ │ └── NamePrettifierTest.php │ │ │ ├── TestTest.php │ │ │ ├── TypeTest.php │ │ │ └── XMLTest.php │ │ └── _files │ │ │ ├── AbstractTest.php │ │ │ ├── Author.php │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── BankAccountTest.test.php │ │ │ ├── Book.php │ │ │ ├── Calculator.php │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ ├── ClassWithToString.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── ConcreteTest.php │ │ │ ├── DataProviderTest.php │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── Error.php │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ ├── ExceptionInSetUpTest.php │ │ │ ├── ExceptionInTearDownTest.php │ │ │ ├── ExceptionInTest.php │ │ │ ├── ExceptionNamespaceTest.php │ │ │ ├── ExceptionStack.php │ │ │ ├── ExceptionTest.php │ │ │ ├── Failure.php │ │ │ ├── FailureTest.php │ │ │ ├── FatalTest.php │ │ │ ├── IncompleteTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── JsonData │ │ │ ├── arrayObject.js │ │ │ ├── simpleObject.js │ │ │ └── simpleObject2.js │ │ │ ├── MockRunner.php │ │ │ ├── MultiDependencyTest.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ ├── NoTestCaseClass.php │ │ │ ├── NoTestCases.php │ │ │ ├── NonStatic.php │ │ │ ├── NotPublicTestCase.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── NothingTest.php │ │ │ ├── OneTestCase.php │ │ │ ├── OutputTestCase.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ ├── RequirementsTest.php │ │ │ ├── SampleClass.php │ │ │ ├── SelectorAssertionsFixture.html │ │ │ ├── Singleton.php │ │ │ ├── StackTest.php │ │ │ ├── Struct.php │ │ │ ├── Success.php │ │ │ ├── TemplateMethodsTest.php │ │ │ ├── TestIterator.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── WasRun.php │ │ │ ├── bar.xml │ │ │ ├── configuration.xml │ │ │ ├── configuration_xinclude.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── foo.xml │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ ├── structureExpected.xml │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ └── structureWrongNumberOfNodes.xml │ │ ├── build.xml │ │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── assertions.php │ │ ├── dependencies │ │ │ ├── DbUnit-1.2.3.tgz │ │ │ ├── File_Iterator-1.3.3.tgz │ │ │ ├── PHPUnit_MockObject-1.2.3.tgz │ │ │ ├── PHPUnit_Selenium-1.3.0.tgz │ │ │ ├── PHP_CodeCoverage-1.2.11.tgz │ │ │ ├── PHP_Invoker-1.1.2.tgz │ │ │ ├── PHP_Timer-1.0.4.tgz │ │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ │ ├── Text_Template-1.1.4.tgz │ │ │ └── Yaml-2.2.0.tgz │ │ ├── phar-autoload.php.in │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── composer │ │ └── bin │ │ │ └── phpunit │ │ ├── package.xml │ │ ├── phpdox.xml.dist │ │ ├── phpunit.bat │ │ ├── phpunit.php │ │ ├── phpunit.xml.dist │ │ └── phpunit.xsd │ └── symfony │ └── yaml │ └── Symfony │ └── Component │ └── 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 │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── part-8 ├── composer.json ├── composer.lock ├── phpunit.xml ├── src │ └── Example │ │ ├── FeedReaders │ │ ├── FacebookFeedReader.php │ │ ├── FeedReaderInterface.php │ │ └── TwitterFeedReader.php │ │ └── SocialFeed.php ├── tests │ ├── FacebookFeedReaderTest.php │ ├── SocialFeedTest.php │ └── TwitterFeedReaderTest.php └── vendor │ ├── autoload.php │ ├── bin │ └── phpunit │ ├── composer │ ├── ClassLoader.php │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_real.php │ ├── include_paths.php │ └── installed.json │ ├── mockery │ └── mockery │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── composer.json │ │ ├── examples │ │ └── starship │ │ │ ├── Bootstrap.php │ │ │ ├── Starship.php │ │ │ ├── StarshipTest.php │ │ │ └── phpunit.xml │ │ ├── library │ │ ├── Mockery.php │ │ └── Mockery │ │ │ ├── Adapter │ │ │ └── Phpunit │ │ │ │ └── TestListener.php │ │ │ ├── CompositeExpectation.php │ │ │ ├── Configuration.php │ │ │ ├── Container.php │ │ │ ├── CountValidator │ │ │ ├── AtLeast.php │ │ │ ├── AtMost.php │ │ │ ├── CountValidatorAbstract.php │ │ │ ├── Exact.php │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── InvalidCountException.php │ │ │ ├── InvalidOrderException.php │ │ │ └── NoMatchingExpectationException.php │ │ │ ├── Expectation.php │ │ │ ├── ExpectationDirector.php │ │ │ ├── Generator.php │ │ │ ├── Loader.php │ │ │ ├── Matcher │ │ │ ├── Any.php │ │ │ ├── AnyOf.php │ │ │ ├── Closure.php │ │ │ ├── Contains.php │ │ │ ├── Ducktype.php │ │ │ ├── HasKey.php │ │ │ ├── HasValue.php │ │ │ ├── MatcherAbstract.php │ │ │ ├── MustBe.php │ │ │ ├── Not.php │ │ │ ├── NotAnyOf.php │ │ │ ├── Subset.php │ │ │ └── Type.php │ │ │ ├── Mock.php │ │ │ ├── MockInterface.php │ │ │ ├── Recorder.php │ │ │ └── Undefined.php │ │ ├── package.xml │ │ └── tests │ │ ├── Bootstrap.php │ │ ├── Mockery │ │ ├── AdhocTest.php │ │ ├── ContainerTest.php │ │ ├── ExpectationTest.php │ │ ├── HamcrestExpectationTest.php │ │ ├── LoaderTest.php │ │ ├── MockTest.php │ │ ├── RecorderTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ │ └── file.txt │ │ └── phpunit.xml │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── CodeCoverage.php │ │ │ └── CodeCoverage │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HTML.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Iterator.php │ │ │ │ ├── PHP.php │ │ │ │ └── Text.php │ │ │ │ ├── Util.php │ │ │ │ ├── Util │ │ │ │ └── InvalidArgumentHelper.php │ │ │ │ └── Version.php │ │ ├── README.markdown │ │ ├── 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 │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ ├── phpunit.xml.dist │ │ └── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.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-composer.json │ │ └── package.xml │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Text │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ └── package.xml │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Timer.php │ │ │ └── Timer │ │ │ │ ├── Autoload.php │ │ │ │ └── Autoload.php.in │ │ ├── README.md │ │ ├── Tests │ │ │ └── TimerTest.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── PHP │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ └── CachingFactory.php │ │ ├── README.md │ │ ├── Tests │ │ │ ├── Token │ │ │ │ ├── ClassTest.php │ │ │ │ ├── ClosureTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── IncludeTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ └── _files │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── closure.php │ │ │ │ ├── issue19.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── source.php │ │ │ │ ├── source2.php │ │ │ │ ├── source3.php │ │ │ │ ├── source4.php │ │ │ │ └── source5.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.markdown │ │ ├── LICENSE │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Autoload.php │ │ │ │ ├── Autoload.php.in │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_object_method.tpl.dist │ │ │ │ ├── mocked_static_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 │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── invocation_static_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 │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ └── _files │ │ │ │ ├── AbstractMockTestClass.php │ │ │ │ ├── AnInterface.php │ │ │ │ ├── FunctionCallback.php │ │ │ │ ├── GoogleSearch.wsdl │ │ │ │ ├── MethodCallback.php │ │ │ │ ├── MethodCallbackByReference.php │ │ │ │ ├── Mockable.php │ │ │ │ ├── PartialMockTestClass.php │ │ │ │ ├── SomeClass.php │ │ │ │ └── StaticMockTestClass.php │ │ ├── build.xml │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ ├── phpmd.xml │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── package.xml │ │ └── phpunit.xml.dist │ └── phpunit │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── PHPUnit │ │ ├── Autoload.php │ │ ├── Autoload.php.in │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestCase │ │ │ │ └── Logger.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ ├── Functions.php │ │ │ │ └── Functions.php.in │ │ │ ├── AssertionFailedError.php │ │ │ ├── Comparator.php │ │ │ ├── Comparator │ │ │ │ ├── Array.php │ │ │ │ ├── DOMDocument.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 │ │ │ ├── OutputError.php │ │ │ ├── Process │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── 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 │ │ │ └── Warning.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Class.php │ │ │ ├── Configuration.php │ │ │ ├── DeprecatedFeature.php │ │ │ ├── DeprecatedFeature │ │ │ └── Logger.php │ │ │ ├── Diff.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 │ │ │ └── Windows.php │ │ │ ├── Printer.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ └── Text.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ ├── README.md │ │ ├── Tests │ │ ├── Extensions │ │ │ └── RepeatedTestTest.php │ │ ├── Framework │ │ │ ├── Assert │ │ │ │ └── FunctionsTest.php │ │ │ ├── AssertTest.php │ │ │ ├── ComparatorTest.php │ │ │ ├── Constraint │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ │ └── JsonMatchesTest.php │ │ │ ├── ConstraintTest.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 │ │ │ │ ├── 244.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ └── 863.phpt │ │ ├── Runner │ │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ │ ├── abstract-test-class.phpt │ │ │ ├── concrete-test-class.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-method-isolation.phpt │ │ │ ├── filter-method.phpt │ │ │ ├── filter-no-results.phpt │ │ │ ├── group-isolation.phpt │ │ │ ├── group.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── log-json.phpt │ │ │ ├── log-tap.phpt │ │ │ ├── log-xml.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 │ │ │ ├── ClassTest.php │ │ │ ├── ConfigurationTest.php │ │ │ ├── DiffTest.php │ │ │ ├── TestDox │ │ │ │ └── NamePrettifierTest.php │ │ │ ├── TestTest.php │ │ │ ├── TypeTest.php │ │ │ └── XMLTest.php │ │ └── _files │ │ │ ├── AbstractTest.php │ │ │ ├── Author.php │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── BankAccountTest.test.php │ │ │ ├── Book.php │ │ │ ├── Calculator.php │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ ├── ClassWithToString.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── ConcreteTest.php │ │ │ ├── DataProviderTest.php │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── Error.php │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ ├── ExceptionInSetUpTest.php │ │ │ ├── ExceptionInTearDownTest.php │ │ │ ├── ExceptionInTest.php │ │ │ ├── ExceptionNamespaceTest.php │ │ │ ├── ExceptionStack.php │ │ │ ├── ExceptionTest.php │ │ │ ├── Failure.php │ │ │ ├── FailureTest.php │ │ │ ├── FatalTest.php │ │ │ ├── IncompleteTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── JsonData │ │ │ ├── arrayObject.js │ │ │ ├── simpleObject.js │ │ │ └── simpleObject2.js │ │ │ ├── MockRunner.php │ │ │ ├── MultiDependencyTest.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ ├── NoTestCaseClass.php │ │ │ ├── NoTestCases.php │ │ │ ├── NonStatic.php │ │ │ ├── NotPublicTestCase.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── NothingTest.php │ │ │ ├── OneTestCase.php │ │ │ ├── OutputTestCase.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ ├── RequirementsTest.php │ │ │ ├── SampleClass.php │ │ │ ├── SelectorAssertionsFixture.html │ │ │ ├── Singleton.php │ │ │ ├── StackTest.php │ │ │ ├── Struct.php │ │ │ ├── Success.php │ │ │ ├── TemplateMethodsTest.php │ │ │ ├── TestIterator.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── WasRun.php │ │ │ ├── bar.xml │ │ │ ├── configuration.xml │ │ │ ├── configuration_xinclude.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── foo.xml │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ ├── structureExpected.xml │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ └── structureWrongNumberOfNodes.xml │ │ ├── build.xml │ │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── assertions.php │ │ ├── dependencies │ │ │ ├── DbUnit-1.2.3.tgz │ │ │ ├── File_Iterator-1.3.3.tgz │ │ │ ├── PHPUnit_MockObject-1.2.3.tgz │ │ │ ├── PHPUnit_Selenium-1.3.0.tgz │ │ │ ├── PHP_CodeCoverage-1.2.11.tgz │ │ │ ├── PHP_Invoker-1.1.2.tgz │ │ │ ├── PHP_Timer-1.0.4.tgz │ │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ │ ├── Text_Template-1.1.4.tgz │ │ │ └── Yaml-2.2.0.tgz │ │ ├── phar-autoload.php.in │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── composer │ │ └── bin │ │ │ └── phpunit │ │ ├── package.xml │ │ ├── phpdox.xml.dist │ │ ├── phpunit.bat │ │ ├── phpunit.php │ │ ├── phpunit.xml.dist │ │ └── phpunit.xsd │ └── symfony │ └── yaml │ └── Symfony │ └── Component │ └── 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 │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist └── part-9 ├── composer.json ├── composer.lock ├── phpunit.xml ├── src └── Example │ ├── FeedReaders │ ├── FacebookFeedReader.php │ ├── FeedReaderInterface.php │ └── TwitterFeedReader.php │ └── SocialFeed.php ├── tests ├── FacebookFeedReaderTest.php ├── SocialFeedTest.php └── TwitterFeedReaderTest.php └── vendor ├── autoload.php ├── bin └── phpunit ├── composer ├── ClassLoader.php ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_real.php ├── include_paths.php └── installed.json ├── mockery └── mockery │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.markdown │ ├── composer.json │ ├── examples │ └── starship │ │ ├── Bootstrap.php │ │ ├── Starship.php │ │ ├── StarshipTest.php │ │ └── phpunit.xml │ ├── library │ ├── Mockery.php │ └── Mockery │ │ ├── Adapter │ │ └── Phpunit │ │ │ └── TestListener.php │ │ ├── CompositeExpectation.php │ │ ├── Configuration.php │ │ ├── Container.php │ │ ├── CountValidator │ │ ├── AtLeast.php │ │ ├── AtMost.php │ │ ├── CountValidatorAbstract.php │ │ ├── Exact.php │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── InvalidCountException.php │ │ ├── InvalidOrderException.php │ │ └── NoMatchingExpectationException.php │ │ ├── Expectation.php │ │ ├── ExpectationDirector.php │ │ ├── Generator.php │ │ ├── Loader.php │ │ ├── Matcher │ │ ├── Any.php │ │ ├── AnyOf.php │ │ ├── Closure.php │ │ ├── Contains.php │ │ ├── Ducktype.php │ │ ├── HasKey.php │ │ ├── HasValue.php │ │ ├── MatcherAbstract.php │ │ ├── MustBe.php │ │ ├── Not.php │ │ ├── NotAnyOf.php │ │ ├── Subset.php │ │ └── Type.php │ │ ├── Mock.php │ │ ├── MockInterface.php │ │ ├── Recorder.php │ │ └── Undefined.php │ ├── package.xml │ └── tests │ ├── Bootstrap.php │ ├── Mockery │ ├── AdhocTest.php │ ├── ContainerTest.php │ ├── ExpectationTest.php │ ├── HamcrestExpectationTest.php │ ├── LoaderTest.php │ ├── MockTest.php │ ├── RecorderTest.php │ ├── WithFormatterExpectationTest.php │ └── _files │ │ └── file.txt │ └── phpunit.xml ├── phpunit ├── php-code-coverage │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PHP │ │ ├── CodeCoverage.php │ │ └── CodeCoverage │ │ │ ├── Autoload.php │ │ │ ├── Autoload.php.in │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ └── Xdebug.php │ │ │ ├── Exception.php │ │ │ ├── Filter.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Factory.php │ │ │ ├── HTML.php │ │ │ ├── HTML │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── highcharts.js │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ └── jquery.min.js │ │ │ │ │ └── method_item.html.dist │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── PHP.php │ │ │ └── Text.php │ │ │ ├── Util.php │ │ │ ├── Util │ │ │ └── InvalidArgumentHelper.php │ │ │ └── Version.php │ ├── README.markdown │ ├── 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 │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ ├── composer.json │ ├── package.xml │ ├── phpunit.xml.dist │ └── scripts │ │ ├── auto_append.php │ │ └── auto_prepend.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-composer.json │ └── package.xml ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.markdown │ ├── LICENSE │ ├── README.markdown │ ├── Text │ │ ├── Template.php │ │ └── Template │ │ │ ├── Autoload.php │ │ │ └── Autoload.php.in │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ └── phpmd.xml │ ├── composer.json │ └── package.xml ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── PHP │ │ ├── Timer.php │ │ └── Timer │ │ │ ├── Autoload.php │ │ │ └── Autoload.php.in │ ├── README.md │ ├── Tests │ │ └── TimerTest.php │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ └── phpmd.xml │ ├── composer.json │ ├── package.xml │ └── phpunit.xml.dist ├── php-token-stream │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── PHP │ │ ├── Token.php │ │ └── Token │ │ │ ├── Stream.php │ │ │ └── Stream │ │ │ ├── Autoload.php │ │ │ ├── Autoload.php.in │ │ │ └── CachingFactory.php │ ├── README.md │ ├── Tests │ │ ├── Token │ │ │ ├── ClassTest.php │ │ │ ├── ClosureTest.php │ │ │ ├── FunctionTest.php │ │ │ ├── IncludeTest.php │ │ │ ├── InterfaceTest.php │ │ │ └── NamespaceTest.php │ │ ├── TokenTest.php │ │ └── _files │ │ │ ├── classExtendsNamespacedClass.php │ │ │ ├── classInNamespace.php │ │ │ ├── classInScopedNamespace.php │ │ │ ├── closure.php │ │ │ ├── issue19.php │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ ├── source.php │ │ │ ├── source2.php │ │ │ ├── source3.php │ │ │ ├── source4.php │ │ │ └── source5.php │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ └── phpmd.xml │ ├── composer.json │ ├── package.xml │ └── phpunit.xml.dist ├── phpunit-mock-objects │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── ChangeLog.markdown │ ├── LICENSE │ ├── PHPUnit │ │ └── Framework │ │ │ └── MockObject │ │ │ ├── Autoload.php │ │ │ ├── Autoload.php.in │ │ │ ├── Builder │ │ │ ├── Identity.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Match.php │ │ │ ├── MethodNameMatch.php │ │ │ ├── Namespace.php │ │ │ ├── ParametersMatch.php │ │ │ └── Stub.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ ├── mocked_class.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── mocked_object_method.tpl.dist │ │ │ ├── mocked_static_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 │ │ │ ├── interface.phpt │ │ │ ├── invocation_object_clone_object.phpt │ │ │ ├── invocation_static_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 │ │ │ ├── wsdl_class.phpt │ │ │ ├── wsdl_class_namespace.phpt │ │ │ └── wsdl_class_partial.phpt │ │ ├── MockObjectTest.php │ │ └── _files │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── AnInterface.php │ │ │ ├── FunctionCallback.php │ │ │ ├── GoogleSearch.wsdl │ │ │ ├── MethodCallback.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── Mockable.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── SomeClass.php │ │ │ └── StaticMockTestClass.php │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ ├── composer.json │ ├── package.xml │ └── phpunit.xml.dist └── phpunit │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── ChangeLog.md │ ├── LICENSE │ ├── PHPUnit │ ├── Autoload.php │ ├── Autoload.php.in │ ├── Extensions │ │ ├── GroupTestSuite.php │ │ ├── PhptTestCase.php │ │ ├── PhptTestCase │ │ │ └── Logger.php │ │ ├── PhptTestSuite.php │ │ ├── RepeatedTest.php │ │ ├── TestDecorator.php │ │ └── TicketListener.php │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ ├── Functions.php │ │ │ └── Functions.php.in │ │ ├── AssertionFailedError.php │ │ ├── Comparator.php │ │ ├── Comparator │ │ │ ├── Array.php │ │ │ ├── DOMDocument.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 │ │ ├── OutputError.php │ │ ├── Process │ │ │ └── TestCaseMethod.tpl.dist │ │ ├── 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 │ │ └── Warning.php │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestSuiteLoader.php │ │ └── Version.php │ ├── TextUI │ │ ├── Command.php │ │ ├── ResultPrinter.php │ │ └── TestRunner.php │ └── Util │ │ ├── Class.php │ │ ├── Configuration.php │ │ ├── DeprecatedFeature.php │ │ ├── DeprecatedFeature │ │ └── Logger.php │ │ ├── Diff.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 │ │ └── Windows.php │ │ ├── Printer.php │ │ ├── String.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ └── ResultPrinter │ │ │ ├── HTML.php │ │ │ └── Text.php │ │ ├── TestSuiteIterator.php │ │ ├── Type.php │ │ └── XML.php │ ├── README.md │ ├── Tests │ ├── Extensions │ │ └── RepeatedTestTest.php │ ├── Framework │ │ ├── Assert │ │ │ └── FunctionsTest.php │ │ ├── AssertTest.php │ │ ├── ComparatorTest.php │ │ ├── Constraint │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ └── JsonMatchesTest.php │ │ ├── ConstraintTest.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 │ │ │ ├── 244.phpt │ │ │ ├── 322.phpt │ │ │ ├── 433.phpt │ │ │ ├── 445.phpt │ │ │ ├── 498.phpt │ │ │ ├── 503.phpt │ │ │ ├── 581.phpt │ │ │ ├── 74.phpt │ │ │ ├── 765.phpt │ │ │ └── 863.phpt │ ├── Runner │ │ └── BaseTestRunnerTest.php │ ├── TextUI │ │ ├── abstract-test-class.phpt │ │ ├── concrete-test-class.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-method-isolation.phpt │ │ ├── filter-method.phpt │ │ ├── filter-no-results.phpt │ │ ├── group-isolation.phpt │ │ ├── group.phpt │ │ ├── help.phpt │ │ ├── help2.phpt │ │ ├── list-groups.phpt │ │ ├── log-json.phpt │ │ ├── log-tap.phpt │ │ ├── log-xml.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 │ │ ├── ClassTest.php │ │ ├── ConfigurationTest.php │ │ ├── DiffTest.php │ │ ├── TestDox │ │ │ └── NamePrettifierTest.php │ │ ├── TestTest.php │ │ ├── TypeTest.php │ │ └── XMLTest.php │ └── _files │ │ ├── AbstractTest.php │ │ ├── Author.php │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── BankAccountTest.test.php │ │ ├── Book.php │ │ ├── Calculator.php │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ ├── ClassWithNonPublicAttributes.php │ │ ├── ClassWithToString.php │ │ ├── ConcreteTest.my.php │ │ ├── ConcreteTest.php │ │ ├── DataProviderTest.php │ │ ├── DependencyFailureTest.php │ │ ├── DependencySuccessTest.php │ │ ├── DependencyTestSuite.php │ │ ├── DoubleTestCase.php │ │ ├── EmptyTestCaseTest.php │ │ ├── Error.php │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ ├── ExceptionInSetUpTest.php │ │ ├── ExceptionInTearDownTest.php │ │ ├── ExceptionInTest.php │ │ ├── ExceptionNamespaceTest.php │ │ ├── ExceptionStack.php │ │ ├── ExceptionTest.php │ │ ├── Failure.php │ │ ├── FailureTest.php │ │ ├── FatalTest.php │ │ ├── IncompleteTest.php │ │ ├── InheritedTestCase.php │ │ ├── JsonData │ │ ├── arrayObject.js │ │ ├── simpleObject.js │ │ └── simpleObject2.js │ │ ├── MockRunner.php │ │ ├── MultiDependencyTest.php │ │ ├── NoArgTestCaseTest.php │ │ ├── NoTestCaseClass.php │ │ ├── NoTestCases.php │ │ ├── NonStatic.php │ │ ├── NotPublicTestCase.php │ │ ├── NotVoidTestCase.php │ │ ├── NothingTest.php │ │ ├── OneTestCase.php │ │ ├── OutputTestCase.php │ │ ├── OverrideTestCase.php │ │ ├── RequirementsClassDocBlockTest.php │ │ ├── RequirementsTest.php │ │ ├── SampleClass.php │ │ ├── SelectorAssertionsFixture.html │ │ ├── Singleton.php │ │ ├── StackTest.php │ │ ├── Struct.php │ │ ├── Success.php │ │ ├── TemplateMethodsTest.php │ │ ├── TestIterator.php │ │ ├── ThrowExceptionTestCase.php │ │ ├── ThrowNoExceptionTestCase.php │ │ ├── WasRun.php │ │ ├── bar.xml │ │ ├── configuration.xml │ │ ├── configuration_xinclude.xml │ │ ├── expectedFileFormat.txt │ │ ├── foo.xml │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ ├── structureExpected.xml │ │ ├── structureIgnoreTextNodes.xml │ │ ├── structureIsSameButDataIsNot.xml │ │ ├── structureWrongNumberOfAttributes.xml │ │ └── structureWrongNumberOfNodes.xml │ ├── build.xml │ ├── build │ ├── PHPCS │ │ ├── Sniffs │ │ │ ├── ControlStructures │ │ │ │ └── ControlSignatureSniff.php │ │ │ └── Whitespace │ │ │ │ └── ConcatenationSpacingSniff.php │ │ └── ruleset.xml │ ├── assertions.php │ ├── dependencies │ │ ├── DbUnit-1.2.3.tgz │ │ ├── File_Iterator-1.3.3.tgz │ │ ├── PHPUnit_MockObject-1.2.3.tgz │ │ ├── PHPUnit_Selenium-1.3.0.tgz │ │ ├── PHP_CodeCoverage-1.2.11.tgz │ │ ├── PHP_Invoker-1.1.2.tgz │ │ ├── PHP_Timer-1.0.4.tgz │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ ├── Text_Template-1.1.4.tgz │ │ └── Yaml-2.2.0.tgz │ ├── phar-autoload.php.in │ ├── phpmd.xml │ └── travis-ci.xml │ ├── composer.json │ ├── composer │ └── bin │ │ └── phpunit │ ├── package.xml │ ├── phpdox.xml.dist │ ├── phpunit.bat │ ├── phpunit.php │ ├── phpunit.xml.dist │ └── phpunit.xsd └── symfony └── yaml └── Symfony └── Component └── 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 ├── ParserTest.php └── YamlTest.php ├── Unescaper.php ├── Yaml.php ├── composer.json └── phpunit.xml.dist /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/README.md -------------------------------------------------------------------------------- /part-1/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/composer.json -------------------------------------------------------------------------------- /part-1/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/composer.lock -------------------------------------------------------------------------------- /part-1/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/phpunit.xml -------------------------------------------------------------------------------- /part-1/src/Example/SocialFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/src/Example/SocialFeed.php -------------------------------------------------------------------------------- /part-1/tests/SocialFeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/tests/SocialFeedTest.php -------------------------------------------------------------------------------- /part-1/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/autoload.php -------------------------------------------------------------------------------- /part-1/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-1/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /part-1/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /part-1/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /part-1/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /part-1/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /part-1/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/composer/installed.json -------------------------------------------------------------------------------- /part-1/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /part-1/vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/php-code-coverage/.gitignore -------------------------------------------------------------------------------- /part-1/vendor/phpunit/php-code-coverage/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/php-code-coverage/.travis.yml -------------------------------------------------------------------------------- /part-1/vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /part-1/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/build/assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/build/assertions.php -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/composer/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /part-1/vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-1/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /part-1/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /part-1/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /part-2/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/composer.json -------------------------------------------------------------------------------- /part-2/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/composer.lock -------------------------------------------------------------------------------- /part-2/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/phpunit.xml -------------------------------------------------------------------------------- /part-2/src/Example/SocialFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/src/Example/SocialFeed.php -------------------------------------------------------------------------------- /part-2/src/Example/TwitterFeedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/src/Example/TwitterFeedReader.php -------------------------------------------------------------------------------- /part-2/tests/SocialFeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/tests/SocialFeedTest.php -------------------------------------------------------------------------------- /part-2/tests/TwitterFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/tests/TwitterFeedReaderTest.php -------------------------------------------------------------------------------- /part-2/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/autoload.php -------------------------------------------------------------------------------- /part-2/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-2/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /part-2/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /part-2/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /part-2/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /part-2/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /part-2/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/composer/installed.json -------------------------------------------------------------------------------- /part-2/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /part-2/vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/php-code-coverage/.gitignore -------------------------------------------------------------------------------- /part-2/vendor/phpunit/php-code-coverage/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/php-code-coverage/.travis.yml -------------------------------------------------------------------------------- /part-2/vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /part-2/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/build/assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/build/assertions.php -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/composer/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /part-2/vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-2/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /part-2/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /part-2/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /part-3/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/composer.json -------------------------------------------------------------------------------- /part-3/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/composer.lock -------------------------------------------------------------------------------- /part-3/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/phpunit.xml -------------------------------------------------------------------------------- /part-3/src/Example/SocialFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/src/Example/SocialFeed.php -------------------------------------------------------------------------------- /part-3/src/Example/TwitterFeedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/src/Example/TwitterFeedReader.php -------------------------------------------------------------------------------- /part-3/tests/SocialFeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/tests/SocialFeedTest.php -------------------------------------------------------------------------------- /part-3/tests/TwitterFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/tests/TwitterFeedReaderTest.php -------------------------------------------------------------------------------- /part-3/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/autoload.php -------------------------------------------------------------------------------- /part-3/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-3/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /part-3/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /part-3/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /part-3/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /part-3/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /part-3/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/composer/installed.json -------------------------------------------------------------------------------- /part-3/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /part-3/vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/php-code-coverage/.gitignore -------------------------------------------------------------------------------- /part-3/vendor/phpunit/php-code-coverage/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/php-code-coverage/.travis.yml -------------------------------------------------------------------------------- /part-3/vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /part-3/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/build/assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/build/assertions.php -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/composer/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /part-3/vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-3/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /part-3/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /part-3/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /part-4/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/composer.json -------------------------------------------------------------------------------- /part-4/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/composer.lock -------------------------------------------------------------------------------- /part-4/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/phpunit.xml -------------------------------------------------------------------------------- /part-4/src/Example/SocialFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/src/Example/SocialFeed.php -------------------------------------------------------------------------------- /part-4/src/Example/TwitterFeedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/src/Example/TwitterFeedReader.php -------------------------------------------------------------------------------- /part-4/tests/SocialFeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/tests/SocialFeedTest.php -------------------------------------------------------------------------------- /part-4/tests/TwitterFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/tests/TwitterFeedReaderTest.php -------------------------------------------------------------------------------- /part-4/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/autoload.php -------------------------------------------------------------------------------- /part-4/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-4/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /part-4/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /part-4/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /part-4/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /part-4/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /part-4/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/composer/installed.json -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/mockery/mockery/README.markdown -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/mockery/mockery/package.xml -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-4/vendor/mockery/mockery/tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/mockery/mockery/tests/phpunit.xml -------------------------------------------------------------------------------- /part-4/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /part-4/vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/php-code-coverage/.gitignore -------------------------------------------------------------------------------- /part-4/vendor/phpunit/php-code-coverage/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/php-code-coverage/.travis.yml -------------------------------------------------------------------------------- /part-4/vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /part-4/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/build/assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/build/assertions.php -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/composer/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /part-4/vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-4/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /part-4/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /part-4/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /part-5/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/composer.json -------------------------------------------------------------------------------- /part-5/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/composer.lock -------------------------------------------------------------------------------- /part-5/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/phpunit.xml -------------------------------------------------------------------------------- /part-5/src/Example/SocialFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/src/Example/SocialFeed.php -------------------------------------------------------------------------------- /part-5/src/Example/TwitterFeedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/src/Example/TwitterFeedReader.php -------------------------------------------------------------------------------- /part-5/tests/SocialFeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/tests/SocialFeedTest.php -------------------------------------------------------------------------------- /part-5/tests/TwitterFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/tests/TwitterFeedReaderTest.php -------------------------------------------------------------------------------- /part-5/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/autoload.php -------------------------------------------------------------------------------- /part-5/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-5/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /part-5/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /part-5/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /part-5/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /part-5/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /part-5/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/composer/installed.json -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/mockery/mockery/README.markdown -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/mockery/mockery/package.xml -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-5/vendor/mockery/mockery/tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/mockery/mockery/tests/phpunit.xml -------------------------------------------------------------------------------- /part-5/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /part-5/vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/php-code-coverage/.gitignore -------------------------------------------------------------------------------- /part-5/vendor/phpunit/php-code-coverage/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/php-code-coverage/.travis.yml -------------------------------------------------------------------------------- /part-5/vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /part-5/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /part-5/vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-5/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /part-5/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /part-5/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /part-6/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/composer.json -------------------------------------------------------------------------------- /part-6/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/composer.lock -------------------------------------------------------------------------------- /part-6/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/phpunit.xml -------------------------------------------------------------------------------- /part-6/src/Example/SocialFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/src/Example/SocialFeed.php -------------------------------------------------------------------------------- /part-6/src/Example/TwitterFeedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/src/Example/TwitterFeedReader.php -------------------------------------------------------------------------------- /part-6/tests/SocialFeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/tests/SocialFeedTest.php -------------------------------------------------------------------------------- /part-6/tests/TwitterFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/tests/TwitterFeedReaderTest.php -------------------------------------------------------------------------------- /part-6/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/autoload.php -------------------------------------------------------------------------------- /part-6/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-6/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /part-6/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /part-6/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /part-6/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /part-6/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /part-6/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/composer/installed.json -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/mockery/mockery/README.markdown -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/mockery/mockery/package.xml -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-6/vendor/mockery/mockery/tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/mockery/mockery/tests/phpunit.xml -------------------------------------------------------------------------------- /part-6/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /part-6/vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /part-6/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /part-6/vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-6/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /part-6/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /part-6/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /part-7/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/composer.json -------------------------------------------------------------------------------- /part-7/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/composer.lock -------------------------------------------------------------------------------- /part-7/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/phpunit.xml -------------------------------------------------------------------------------- /part-7/src/Example/FacebookFeedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/src/Example/FacebookFeedReader.php -------------------------------------------------------------------------------- /part-7/src/Example/SocialFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/src/Example/SocialFeed.php -------------------------------------------------------------------------------- /part-7/src/Example/TwitterFeedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/src/Example/TwitterFeedReader.php -------------------------------------------------------------------------------- /part-7/tests/FacebookFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/tests/FacebookFeedReaderTest.php -------------------------------------------------------------------------------- /part-7/tests/SocialFeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/tests/SocialFeedTest.php -------------------------------------------------------------------------------- /part-7/tests/TwitterFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/tests/TwitterFeedReaderTest.php -------------------------------------------------------------------------------- /part-7/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/autoload.php -------------------------------------------------------------------------------- /part-7/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-7/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /part-7/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /part-7/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /part-7/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /part-7/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /part-7/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/composer/installed.json -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/mockery/mockery/README.markdown -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/mockery/mockery/package.xml -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-7/vendor/mockery/mockery/tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/mockery/mockery/tests/phpunit.xml -------------------------------------------------------------------------------- /part-7/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /part-7/vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /part-7/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /part-7/vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-7/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /part-7/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /part-7/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /part-8/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/composer.json -------------------------------------------------------------------------------- /part-8/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/composer.lock -------------------------------------------------------------------------------- /part-8/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/phpunit.xml -------------------------------------------------------------------------------- /part-8/src/Example/SocialFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/src/Example/SocialFeed.php -------------------------------------------------------------------------------- /part-8/tests/FacebookFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/tests/FacebookFeedReaderTest.php -------------------------------------------------------------------------------- /part-8/tests/SocialFeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/tests/SocialFeedTest.php -------------------------------------------------------------------------------- /part-8/tests/TwitterFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/tests/TwitterFeedReaderTest.php -------------------------------------------------------------------------------- /part-8/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/autoload.php -------------------------------------------------------------------------------- /part-8/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-8/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /part-8/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /part-8/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /part-8/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /part-8/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /part-8/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/composer/installed.json -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/mockery/mockery/README.markdown -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/mockery/mockery/package.xml -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-8/vendor/mockery/mockery/tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/mockery/mockery/tests/phpunit.xml -------------------------------------------------------------------------------- /part-8/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /part-8/vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /part-8/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /part-8/vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-8/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /part-8/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /part-8/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /part-9/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/composer.json -------------------------------------------------------------------------------- /part-9/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/composer.lock -------------------------------------------------------------------------------- /part-9/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/phpunit.xml -------------------------------------------------------------------------------- /part-9/src/Example/SocialFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/src/Example/SocialFeed.php -------------------------------------------------------------------------------- /part-9/tests/FacebookFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/tests/FacebookFeedReaderTest.php -------------------------------------------------------------------------------- /part-9/tests/SocialFeedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/tests/SocialFeedTest.php -------------------------------------------------------------------------------- /part-9/tests/TwitterFeedReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/tests/TwitterFeedReaderTest.php -------------------------------------------------------------------------------- /part-9/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/autoload.php -------------------------------------------------------------------------------- /part-9/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /part-9/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /part-9/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /part-9/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /part-9/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /part-9/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/composer/include_paths.php -------------------------------------------------------------------------------- /part-9/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/composer/installed.json -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/mockery/mockery/README.markdown -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/mockery/mockery/package.xml -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-9/vendor/mockery/mockery/tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/mockery/mockery/tests/phpunit.xml -------------------------------------------------------------------------------- /part-9/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /part-9/vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /part-9/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /part-9/vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylerees/dependency-injection-example/HEAD/part-9/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /part-9/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /part-9/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | --------------------------------------------------------------------------------