├── LICENSE.md
├── README.md
├── part-01
├── composer.json
├── composer.lock
├── phpunit.xml
├── tests
│ └── MarkdownParserTest.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-02
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ └── MarkdownParser.php
├── tests
│ └── MarkdownParserTest.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-03
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ └── MarkdownParserTest.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-04
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ └── MarkdownParserTest.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-05
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-06
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-07
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-08
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-09
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-10
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-11
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-12
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-13
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-14
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-15
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-16
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-17
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-18
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
│ └── Example
│ │ ├── FileLoader.php
│ │ └── MarkdownParser.php
├── tests
│ ├── FileLoaderTest.php
│ ├── MarkdownParserTest.php
│ └── fixtures
│ │ └── simple.md
└── 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-19
├── composer.json
├── composer.lock
├── phpunit.xml
├── src
└── Example
│ ├── FileLoader.php
│ └── MarkdownParser.php
├── tests
├── FileLoaderTest.php
├── MarkdownParserTest.php
└── fixtures
│ └── simple.md
└── 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/test-driven-development-example/HEAD/LICENSE.md
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/README.md
--------------------------------------------------------------------------------
/part-01/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/composer.json
--------------------------------------------------------------------------------
/part-01/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/composer.lock
--------------------------------------------------------------------------------
/part-01/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/phpunit.xml
--------------------------------------------------------------------------------
/part-01/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-01/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/autoload.php
--------------------------------------------------------------------------------
/part-01/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-01/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-01/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/part-01/vendor/composer/include_paths.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/composer/include_paths.php
--------------------------------------------------------------------------------
/part-01/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-01/vendor/mockery/mockery/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/mockery/mockery/.gitignore
--------------------------------------------------------------------------------
/part-01/vendor/mockery/mockery/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/mockery/mockery/.travis.yml
--------------------------------------------------------------------------------
/part-01/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-01/vendor/mockery/mockery/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/mockery/mockery/package.xml
--------------------------------------------------------------------------------
/part-01/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-01/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-01/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-01/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-01/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-01/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-01/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-01/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-01/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-01/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-01/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-01/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-01/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-02/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/composer.json
--------------------------------------------------------------------------------
/part-02/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/composer.lock
--------------------------------------------------------------------------------
/part-02/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/phpunit.xml
--------------------------------------------------------------------------------
/part-02/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-02/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-02/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/autoload.php
--------------------------------------------------------------------------------
/part-02/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-02/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-02/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/part-02/vendor/composer/include_paths.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/composer/include_paths.php
--------------------------------------------------------------------------------
/part-02/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-02/vendor/mockery/mockery/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/mockery/mockery/.gitignore
--------------------------------------------------------------------------------
/part-02/vendor/mockery/mockery/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/mockery/mockery/.travis.yml
--------------------------------------------------------------------------------
/part-02/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-02/vendor/mockery/mockery/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/mockery/mockery/package.xml
--------------------------------------------------------------------------------
/part-02/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-02/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-02/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-02/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-02/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-02/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-02/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-02/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-02/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-02/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-02/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-02/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-02/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-03/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-03/composer.json
--------------------------------------------------------------------------------
/part-03/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-03/composer.lock
--------------------------------------------------------------------------------
/part-03/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-03/phpunit.xml
--------------------------------------------------------------------------------
/part-03/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-03/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-03/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-03/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-03/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-03/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-03/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-03/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-03/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-03/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-03/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-03/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-03/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-03/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-03/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-04/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-04/composer.json
--------------------------------------------------------------------------------
/part-04/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-04/composer.lock
--------------------------------------------------------------------------------
/part-04/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-04/phpunit.xml
--------------------------------------------------------------------------------
/part-04/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-04/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-04/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-04/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-04/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-04/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-04/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-04/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-04/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-04/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-04/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-04/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-04/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-04/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-04/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-04/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-04/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-05/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-05/composer.json
--------------------------------------------------------------------------------
/part-05/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-05/composer.lock
--------------------------------------------------------------------------------
/part-05/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-05/phpunit.xml
--------------------------------------------------------------------------------
/part-05/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-05/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-05/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-05/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-05/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-05/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-05/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-05/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-05/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-05/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-05/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-05/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-05/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-05/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-05/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-06/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-06/composer.json
--------------------------------------------------------------------------------
/part-06/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-06/composer.lock
--------------------------------------------------------------------------------
/part-06/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-06/phpunit.xml
--------------------------------------------------------------------------------
/part-06/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-06/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-06/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-06/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-06/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-06/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-06/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-06/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-06/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-06/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-06/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-06/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-06/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-06/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-06/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-06/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-06/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-07/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-07/composer.json
--------------------------------------------------------------------------------
/part-07/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-07/composer.lock
--------------------------------------------------------------------------------
/part-07/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-07/phpunit.xml
--------------------------------------------------------------------------------
/part-07/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-07/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-07/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-07/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-07/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-07/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-07/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-07/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-07/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-07/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-07/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-07/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-07/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-07/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-07/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-07/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-07/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-08/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-08/composer.json
--------------------------------------------------------------------------------
/part-08/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-08/composer.lock
--------------------------------------------------------------------------------
/part-08/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-08/phpunit.xml
--------------------------------------------------------------------------------
/part-08/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-08/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-08/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-08/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-08/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-08/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-08/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-08/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-08/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-08/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-08/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-08/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-08/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-08/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-08/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-08/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-08/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-09/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-09/composer.json
--------------------------------------------------------------------------------
/part-09/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-09/composer.lock
--------------------------------------------------------------------------------
/part-09/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-09/phpunit.xml
--------------------------------------------------------------------------------
/part-09/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-09/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-09/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-09/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-09/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-09/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-09/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-09/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-09/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-09/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-09/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-09/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-09/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-09/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-09/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-09/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-09/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-10/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/composer.json
--------------------------------------------------------------------------------
/part-10/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/composer.lock
--------------------------------------------------------------------------------
/part-10/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/phpunit.xml
--------------------------------------------------------------------------------
/part-10/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-10/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-10/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-10/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-10/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-10/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/autoload.php
--------------------------------------------------------------------------------
/part-10/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-10/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-10/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/part-10/vendor/composer/include_paths.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/composer/include_paths.php
--------------------------------------------------------------------------------
/part-10/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-10/vendor/mockery/mockery/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/mockery/mockery/.gitignore
--------------------------------------------------------------------------------
/part-10/vendor/mockery/mockery/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/mockery/mockery/.travis.yml
--------------------------------------------------------------------------------
/part-10/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-10/vendor/mockery/mockery/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/mockery/mockery/package.xml
--------------------------------------------------------------------------------
/part-10/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-10/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-10/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-10/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-10/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-10/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-10/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-10/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-10/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-10/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-10/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-10/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-10/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-11/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/composer.json
--------------------------------------------------------------------------------
/part-11/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/composer.lock
--------------------------------------------------------------------------------
/part-11/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/phpunit.xml
--------------------------------------------------------------------------------
/part-11/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-11/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-11/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-11/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-11/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-11/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/autoload.php
--------------------------------------------------------------------------------
/part-11/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-11/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-11/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/part-11/vendor/composer/include_paths.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/composer/include_paths.php
--------------------------------------------------------------------------------
/part-11/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-11/vendor/mockery/mockery/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/mockery/mockery/.gitignore
--------------------------------------------------------------------------------
/part-11/vendor/mockery/mockery/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/mockery/mockery/.travis.yml
--------------------------------------------------------------------------------
/part-11/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-11/vendor/mockery/mockery/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/mockery/mockery/package.xml
--------------------------------------------------------------------------------
/part-11/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-11/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-11/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-11/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-11/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-11/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-11/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-11/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-11/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-11/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-11/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-11/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-11/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-12/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/composer.json
--------------------------------------------------------------------------------
/part-12/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/composer.lock
--------------------------------------------------------------------------------
/part-12/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/phpunit.xml
--------------------------------------------------------------------------------
/part-12/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-12/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-12/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-12/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-12/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-12/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/autoload.php
--------------------------------------------------------------------------------
/part-12/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-12/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-12/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/part-12/vendor/composer/include_paths.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/composer/include_paths.php
--------------------------------------------------------------------------------
/part-12/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-12/vendor/mockery/mockery/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/mockery/mockery/.gitignore
--------------------------------------------------------------------------------
/part-12/vendor/mockery/mockery/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/mockery/mockery/.travis.yml
--------------------------------------------------------------------------------
/part-12/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-12/vendor/mockery/mockery/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/mockery/mockery/package.xml
--------------------------------------------------------------------------------
/part-12/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-12/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-12/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-12/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-12/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-12/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-12/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-12/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-12/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-12/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-12/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-12/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-12/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-13/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/composer.json
--------------------------------------------------------------------------------
/part-13/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/composer.lock
--------------------------------------------------------------------------------
/part-13/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/phpunit.xml
--------------------------------------------------------------------------------
/part-13/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-13/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-13/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-13/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-13/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-13/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/autoload.php
--------------------------------------------------------------------------------
/part-13/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-13/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-13/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/part-13/vendor/composer/include_paths.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/composer/include_paths.php
--------------------------------------------------------------------------------
/part-13/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-13/vendor/mockery/mockery/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/mockery/mockery/.gitignore
--------------------------------------------------------------------------------
/part-13/vendor/mockery/mockery/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/mockery/mockery/.travis.yml
--------------------------------------------------------------------------------
/part-13/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-13/vendor/mockery/mockery/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/mockery/mockery/package.xml
--------------------------------------------------------------------------------
/part-13/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-13/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-13/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-13/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-13/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-13/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-13/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-13/vendor/phpunit/phpunit/phpunit.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/phpunit/phpunit/phpunit.bat
--------------------------------------------------------------------------------
/part-13/vendor/phpunit/phpunit/phpunit.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/phpunit/phpunit/phpunit.php
--------------------------------------------------------------------------------
/part-13/vendor/phpunit/phpunit/phpunit.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-13/vendor/phpunit/phpunit/phpunit.xsd
--------------------------------------------------------------------------------
/part-13/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-13/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-14/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/composer.json
--------------------------------------------------------------------------------
/part-14/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/composer.lock
--------------------------------------------------------------------------------
/part-14/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/phpunit.xml
--------------------------------------------------------------------------------
/part-14/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-14/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-14/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-14/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-14/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-14/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/autoload.php
--------------------------------------------------------------------------------
/part-14/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-14/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-14/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/part-14/vendor/composer/include_paths.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/composer/include_paths.php
--------------------------------------------------------------------------------
/part-14/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-14/vendor/mockery/mockery/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/mockery/mockery/.gitignore
--------------------------------------------------------------------------------
/part-14/vendor/mockery/mockery/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/mockery/mockery/.travis.yml
--------------------------------------------------------------------------------
/part-14/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-14/vendor/mockery/mockery/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/mockery/mockery/package.xml
--------------------------------------------------------------------------------
/part-14/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-14/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-14/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-14/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-14/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-14/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-14/vendor/phpunit/phpunit/package.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-14/vendor/phpunit/phpunit/package.xml
--------------------------------------------------------------------------------
/part-14/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-14/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-15/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/composer.json
--------------------------------------------------------------------------------
/part-15/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/composer.lock
--------------------------------------------------------------------------------
/part-15/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/phpunit.xml
--------------------------------------------------------------------------------
/part-15/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-15/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-15/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-15/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-15/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-15/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/vendor/autoload.php
--------------------------------------------------------------------------------
/part-15/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-15/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-15/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-15/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-15/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-15/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-15/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-15/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-15/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-15/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-15/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-15/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-15/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-16/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/composer.json
--------------------------------------------------------------------------------
/part-16/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/composer.lock
--------------------------------------------------------------------------------
/part-16/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/phpunit.xml
--------------------------------------------------------------------------------
/part-16/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-16/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-16/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-16/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-16/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-16/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/vendor/autoload.php
--------------------------------------------------------------------------------
/part-16/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-16/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-16/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-16/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-16/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-16/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-16/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-16/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-16/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-16/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-16/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-16/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-16/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-17/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/composer.json
--------------------------------------------------------------------------------
/part-17/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/composer.lock
--------------------------------------------------------------------------------
/part-17/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/phpunit.xml
--------------------------------------------------------------------------------
/part-17/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-17/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-17/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-17/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-17/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-17/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/vendor/autoload.php
--------------------------------------------------------------------------------
/part-17/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-17/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-17/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-17/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-17/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-17/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-17/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-17/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-17/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-17/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-17/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-17/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-17/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-18/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/composer.json
--------------------------------------------------------------------------------
/part-18/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/composer.lock
--------------------------------------------------------------------------------
/part-18/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/phpunit.xml
--------------------------------------------------------------------------------
/part-18/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-18/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-18/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-18/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-18/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-18/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/vendor/autoload.php
--------------------------------------------------------------------------------
/part-18/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-18/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-18/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-18/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-18/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-18/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-18/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-18/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-18/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-18/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-18/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-18/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-18/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/part-19/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/composer.json
--------------------------------------------------------------------------------
/part-19/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/composer.lock
--------------------------------------------------------------------------------
/part-19/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/phpunit.xml
--------------------------------------------------------------------------------
/part-19/src/Example/FileLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/src/Example/FileLoader.php
--------------------------------------------------------------------------------
/part-19/src/Example/MarkdownParser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/src/Example/MarkdownParser.php
--------------------------------------------------------------------------------
/part-19/tests/FileLoaderTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/tests/FileLoaderTest.php
--------------------------------------------------------------------------------
/part-19/tests/MarkdownParserTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/tests/MarkdownParserTest.php
--------------------------------------------------------------------------------
/part-19/tests/fixtures/simple.md:
--------------------------------------------------------------------------------
1 | Foo
2 |
--------------------------------------------------------------------------------
/part-19/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/vendor/autoload.php
--------------------------------------------------------------------------------
/part-19/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/composer/bin/phpunit
--------------------------------------------------------------------------------
/part-19/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part-19/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part-19/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part-19/vendor/mockery/mockery/tests/Mockery/_files/file.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part-19/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part-19/vendor/phpunit/php-code-coverage/Tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-19/vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt:
--------------------------------------------------------------------------------
1 | FOO
2 |
--------------------------------------------------------------------------------
/part-19/vendor/phpunit/phpunit/Tests/_files/foo.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part-19/vendor/phpunit/phpunit/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daylerees/test-driven-development-example/HEAD/part-19/vendor/phpunit/phpunit/build.xml
--------------------------------------------------------------------------------
/part-19/vendor/symfony/yaml/Symfony/Component/Yaml/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part-19/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------