├── .idea ├── TutsLibrary.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── php.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── Books ├── Book.php ├── BookFactory.php ├── ColoringBook.php ├── NoSuchBookTypeException.php └── Novel.php ├── Car.php ├── Library.php ├── LibraryFacade.php ├── Persistence ├── FileSystem.php └── InMemory.php ├── PersitenceGateway.php ├── README.md ├── Requirements ├── Tests ├── BookFactoryTest.php ├── BookTest.php ├── ColoringBookTest.php ├── FileSystemTest.php ├── LibraryTest.php └── NovelTest.php ├── autoload.php ├── bootstrap.php ├── composer.json ├── composer.lock ├── index.php ├── nbproject ├── project.properties └── project.xml └── vendor ├── autoload.php ├── bin ├── dbunit.php └── phpunit ├── composer ├── ClassLoader.php ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_real.php ├── include_paths.php └── installed.json ├── mockery └── mockery │ ├── 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 ├── dbunit │ ├── ChangeLog.markdown │ ├── LICENSE │ ├── PHPUnit │ │ └── Extensions │ │ │ └── Database │ │ │ ├── AbstractTester.php │ │ │ ├── Autoload.php │ │ │ ├── Autoload.php.in │ │ │ ├── Constraint │ │ │ ├── DataSetIsEqual.php │ │ │ ├── TableIsEqual.php │ │ │ └── TableRowCount.php │ │ │ ├── DB │ │ │ ├── DataSet.php │ │ │ ├── DefaultDatabaseConnection.php │ │ │ ├── FilteredDataSet.php │ │ │ ├── IDatabaseConnection.php │ │ │ ├── IMetaData.php │ │ │ ├── MetaData.php │ │ │ ├── MetaData │ │ │ │ ├── InformationSchema.php │ │ │ │ ├── MySQL.php │ │ │ │ ├── Oci.php │ │ │ │ ├── PgSQL.php │ │ │ │ ├── SqlSrv.php │ │ │ │ └── Sqlite.php │ │ │ ├── ResultSetTable.php │ │ │ ├── Table.php │ │ │ ├── TableIterator.php │ │ │ └── TableMetaData.php │ │ │ ├── DataSet │ │ │ ├── AbstractDataSet.php │ │ │ ├── AbstractTable.php │ │ │ ├── AbstractTableMetaData.php │ │ │ ├── AbstractXmlDataSet.php │ │ │ ├── CompositeDataSet.php │ │ │ ├── CsvDataSet.php │ │ │ ├── DataSetFilter.php │ │ │ ├── DefaultDataSet.php │ │ │ ├── DefaultTable.php │ │ │ ├── DefaultTableIterator.php │ │ │ ├── DefaultTableMetaData.php │ │ │ ├── FlatXmlDataSet.php │ │ │ ├── IDataSet.php │ │ │ ├── IPersistable.php │ │ │ ├── ISpec.php │ │ │ ├── ITable.php │ │ │ ├── ITableIterator.php │ │ │ ├── ITableMetaData.php │ │ │ ├── MysqlXmlDataSet.php │ │ │ ├── Persistors │ │ │ │ ├── Abstract.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FlatXml.php │ │ │ │ ├── MysqlXml.php │ │ │ │ ├── Xml.php │ │ │ │ └── Yaml.php │ │ │ ├── QueryDataSet.php │ │ │ ├── QueryTable.php │ │ │ ├── ReplacementDataSet.php │ │ │ ├── ReplacementTable.php │ │ │ ├── ReplacementTableIterator.php │ │ │ ├── Specs │ │ │ │ ├── Csv.php │ │ │ │ ├── DbQuery.php │ │ │ │ ├── DbTable.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FlatXml.php │ │ │ │ ├── IFactory.php │ │ │ │ ├── Xml.php │ │ │ │ └── Yaml.php │ │ │ ├── TableFilter.php │ │ │ ├── TableMetaDataFilter.php │ │ │ ├── XmlDataSet.php │ │ │ └── YamlDataSet.php │ │ │ ├── DefaultTester.php │ │ │ ├── Exception.php │ │ │ ├── IDatabaseListConsumer.php │ │ │ ├── ITester.php │ │ │ ├── Operation │ │ │ ├── Composite.php │ │ │ ├── Delete.php │ │ │ ├── DeleteAll.php │ │ │ ├── Exception.php │ │ │ ├── Factory.php │ │ │ ├── IDatabaseOperation.php │ │ │ ├── Insert.php │ │ │ ├── Null.php │ │ │ ├── Replace.php │ │ │ ├── RowBased.php │ │ │ ├── Truncate.php │ │ │ └── Update.php │ │ │ ├── TestCase.php │ │ │ └── UI │ │ │ ├── Command.php │ │ │ ├── Context.php │ │ │ ├── IMedium.php │ │ │ ├── IMediumPrinter.php │ │ │ ├── IMode.php │ │ │ ├── IModeFactory.php │ │ │ ├── InvalidModeException.php │ │ │ ├── Mediums │ │ │ └── Text.php │ │ │ ├── ModeFactory.php │ │ │ └── Modes │ │ │ ├── ExportDataSet.php │ │ │ └── ExportDataSet │ │ │ └── Arguments.php │ ├── Samples │ │ └── BankAccountDB │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountCompositeTest.php │ │ │ ├── BankAccountDBTest.php │ │ │ ├── BankAccountDBTestMySQL.php │ │ │ └── _files │ │ │ ├── bank-account-after-deposits.xml │ │ │ ├── bank-account-after-new-account.xml │ │ │ ├── bank-account-after-withdrawals.xml │ │ │ └── bank-account-seed.xml │ ├── Tests │ │ ├── Constraint │ │ │ └── TableRowCountTest.php │ │ ├── DB │ │ │ └── DefaultDatabaseConnectionTest.php │ │ ├── DataSet │ │ │ ├── AbstractTableTest.php │ │ │ ├── CompositeDataSetTest.php │ │ │ ├── CsvDataSetTest.php │ │ │ ├── FilterTest.php │ │ │ ├── PersistorTest.php │ │ │ ├── QueryDataSetTest.php │ │ │ ├── QueryTableTest.php │ │ │ ├── ReplacementDataSetTest.php │ │ │ ├── ReplacementTableTest.php │ │ │ ├── XmlDataSetsTest.php │ │ │ └── YamlDataSetTest.php │ │ ├── Operation │ │ │ ├── OperationsMySQLTest.php │ │ │ ├── OperationsTest.php │ │ │ └── RowBasedTest.php │ │ └── _files │ │ │ ├── CsvDataSets │ │ │ ├── table1.csv │ │ │ └── table2.csv │ │ │ ├── DatabaseTestUtility.php │ │ │ ├── XmlDataSets │ │ │ ├── AllEmptyTableInsertResult.xml │ │ │ ├── AllEmptyTableInsertTest.xml │ │ │ ├── DeleteAllOperationTest.xml │ │ │ ├── DeleteOperationResult.xml │ │ │ ├── DeleteOperationTest.xml │ │ │ ├── EmptyTableInsertResult.xml │ │ │ ├── EmptyTableInsertTest.xml │ │ │ ├── FilteredTestComparison.xml │ │ │ ├── FilteredTestFixture.xml │ │ │ ├── FlatXmlDataSet.xml │ │ │ ├── FlatXmlWriter.xml │ │ │ ├── FlatXmlWriterEntities.xml │ │ │ ├── InsertOperationResult.xml │ │ │ ├── InsertOperationTest.xml │ │ │ ├── MysqlXmlDataSet.xml │ │ │ ├── OperationsMySQLTestFixture.xml │ │ │ ├── OperationsTestFixture.xml │ │ │ ├── QueryDataSetTest.xml │ │ │ ├── ReplaceOperationResult.xml │ │ │ ├── ReplaceOperationTest.xml │ │ │ ├── RowBasedExecute.xml │ │ │ ├── UpdateOperationResult.xml │ │ │ ├── UpdateOperationTest.xml │ │ │ ├── XmlDataSet.xml │ │ │ ├── XmlWriter.xml │ │ │ └── XmlWriterEntities.xml │ │ │ └── YamlDataSets │ │ │ └── testDataSet.yaml │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ ├── phpmd.xml │ │ └── travis-ci.xml │ ├── composer.json │ ├── dbunit.bat │ ├── dbunit.php │ ├── package.xml │ └── phpunit.xml.dist ├── php-code-coverage │ ├── 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 │ ├── ChangeLog.markdown │ ├── File │ │ ├── Iterator.php │ │ └── Iterator │ │ │ ├── Autoload.php │ │ │ ├── Autoload.php.in │ │ │ ├── Facade.php │ │ │ └── Factory.php │ ├── LICENSE │ ├── README.markdown │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ └── phpmd.xml │ ├── composer.json │ └── package.xml ├── php-invoker │ ├── ChangeLog.markdown │ ├── LICENSE │ ├── PHP │ │ ├── Invoker.php │ │ └── Invoker │ │ │ ├── Autoload.php │ │ │ ├── Autoload.php.in │ │ │ └── TimeoutException.php │ ├── README.markdown │ ├── Tests │ │ ├── InvokerTest.php │ │ └── _fixture │ │ │ └── TestCallable.php │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ └── phpmd.xml │ ├── composer.json │ ├── package.xml │ └── phpunit.xml.dist ├── php-text-template │ ├── 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 │ ├── 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 │ ├── 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 │ │ │ ├── issue30.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 │ ├── 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-selenium │ ├── ChangeLog.markdown │ ├── LICENSE │ ├── PHPUnit │ │ └── Extensions │ │ │ ├── Selenium2TestCase.php │ │ │ ├── Selenium2TestCase │ │ │ ├── Command.php │ │ │ ├── CommandsHolder.php │ │ │ ├── Driver.php │ │ │ ├── Element.php │ │ │ ├── Element │ │ │ │ ├── Accessor.php │ │ │ │ └── Select.php │ │ │ ├── ElementCommand │ │ │ │ ├── Attribute.php │ │ │ │ ├── Click.php │ │ │ │ ├── Css.php │ │ │ │ ├── Equals.php │ │ │ │ ├── GenericAccessor.php │ │ │ │ ├── GenericPost.php │ │ │ │ └── Value.php │ │ │ ├── ElementCriteria.php │ │ │ ├── Exception.php │ │ │ ├── Keys.php │ │ │ ├── KeysHolder.php │ │ │ ├── NoSeleniumException.php │ │ │ ├── Response.php │ │ │ ├── ScreenshotListener.php │ │ │ ├── Session.php │ │ │ ├── Session │ │ │ │ ├── Cookie.php │ │ │ │ ├── Cookie │ │ │ │ │ └── Builder.php │ │ │ │ ├── Storage.php │ │ │ │ └── Timeouts.php │ │ │ ├── SessionCommand │ │ │ │ ├── AcceptAlert.php │ │ │ │ ├── AlertText.php │ │ │ │ ├── Click.php │ │ │ │ ├── DismissAlert.php │ │ │ │ ├── File.php │ │ │ │ ├── Frame.php │ │ │ │ ├── GenericAccessor.php │ │ │ │ ├── GenericAttribute.php │ │ │ │ ├── Keys.php │ │ │ │ ├── Location.php │ │ │ │ ├── MoveTo.php │ │ │ │ ├── Orientation.php │ │ │ │ ├── Url.php │ │ │ │ └── Window.php │ │ │ ├── SessionStrategy.php │ │ │ ├── SessionStrategy │ │ │ │ ├── Isolated.php │ │ │ │ └── Shared.php │ │ │ ├── StateCommand.php │ │ │ ├── URL.php │ │ │ ├── WaitUntil.php │ │ │ ├── WebDriverException.php │ │ │ └── Window.php │ │ │ ├── SeleniumBrowserSuite.php │ │ │ ├── SeleniumCommon │ │ │ ├── Autoload.php │ │ │ ├── Autoload.php.in │ │ │ ├── ExitHandler.php │ │ │ ├── RemoteCoverage.php │ │ │ ├── append.php │ │ │ ├── phpunit_coverage.php │ │ │ └── prepend.php │ │ │ ├── SeleniumTestCase.php │ │ │ ├── SeleniumTestCase │ │ │ ├── Autoload.php │ │ │ └── Driver.php │ │ │ └── SeleniumTestSuite.php │ ├── README.md │ ├── Tests │ │ ├── CodeCoverageTest.php │ │ ├── Selenium2TestCase │ │ │ ├── BaseTestCase.php │ │ │ ├── Coverage │ │ │ │ ├── DummyClass.php │ │ │ │ ├── RemoteCoverageTest.php │ │ │ │ ├── SingleFileTest.php │ │ │ │ ├── singleFile.php │ │ │ │ └── singleFileCoverage.php │ │ │ ├── CustomDesiredCapabilitiesTest.php │ │ │ ├── FailuresTest.php │ │ │ ├── MobileFeaturesTest.php │ │ │ ├── MultipleBrowsersTest.php │ │ │ ├── PageObjectTest.php │ │ │ ├── RegressionsTest.php │ │ │ ├── ScreenshotListenerTest.php │ │ │ ├── SessionCommand │ │ │ │ └── FileTest.php │ │ │ ├── SessionInSetupTest.php │ │ │ ├── SetUpPageTest.php │ │ │ ├── SuiteBuildingTest.php │ │ │ ├── TimeoutTest.php │ │ │ ├── URLTest.php │ │ │ ├── WaitUntilTest.php │ │ │ └── WebDriverBackedSeleniumTest.php │ │ ├── Selenium2TestCaseTest.php │ │ ├── SeleniumTestCase │ │ │ ├── BaseTestCase.php │ │ │ ├── CountMethodsTest.php │ │ │ ├── FailuresTest.php │ │ │ ├── MultipleBrowsersTest.php │ │ │ ├── RegressionsTest.php │ │ │ ├── SeleneseFileTest.php │ │ │ ├── SeleneseTest.php │ │ │ ├── SkippedTest.php │ │ │ ├── StringMatchPatternTest.php │ │ │ ├── SuiteBuildingTest.php │ │ │ ├── Ticket114Test.php │ │ │ └── Ticket90UnicodeExpressionTest.php │ │ └── SeleniumTestCaseTest.php │ ├── after_script.sh │ ├── before_script.sh │ ├── build.xml │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ └── phpmd.xml │ ├── composer.json │ ├── composer.lock │ ├── package.xml │ ├── phpunit-selenium-bootstrap.php │ ├── phpunit.xml.dist │ └── selenium-1-tests │ │ ├── coverage │ │ └── dummy.txt │ │ ├── html │ │ ├── CamelCasePage.html │ │ ├── banner.gif │ │ ├── test_check_uncheck.html │ │ ├── test_click_javascript_page.html │ │ ├── test_click_page1.html │ │ ├── test_click_page2.html │ │ ├── test_confirm.html │ │ ├── test_count.html │ │ ├── test_delayed_element.html │ │ ├── test_doubleclick.html │ │ ├── test_dummy_page.html │ │ ├── test_editable.html │ │ ├── test_element_selection.html │ │ ├── test_focus_on_blur.html │ │ ├── test_form_elements.html │ │ ├── test_form_events.html │ │ ├── test_frames.html │ │ ├── test_geometry.html │ │ ├── test_locators.html │ │ ├── test_mouse_buttons.html │ │ ├── test_moveto.html │ │ ├── test_multiselect.html │ │ ├── test_open.html │ │ ├── test_page.slow.html │ │ ├── test_prompt.html │ │ ├── test_reload_onchange_page.html │ │ ├── test_select.html │ │ ├── test_select_window.html │ │ ├── test_select_window_popup.html │ │ ├── test_send_keys.html │ │ ├── test_slowloading_page.html │ │ ├── test_special_keys.html │ │ ├── test_store_value.html │ │ ├── test_submit.html │ │ ├── test_text_patterns.html │ │ ├── test_type_page1.html │ │ ├── test_type_page2.html │ │ ├── test_verifications.html │ │ ├── test_verify_alert.html │ │ ├── test_visibility.html │ │ └── test_wait.html │ │ ├── php │ │ └── file_upload.php │ │ └── selenese │ │ └── test_selenese_directory.html ├── phpunit-story │ ├── ChangeLog.markdown │ ├── LICENSE │ ├── PHPUnit │ │ └── Extensions │ │ │ └── Story │ │ │ ├── Autoload.php │ │ │ ├── Autoload.php.in │ │ │ ├── Given.php │ │ │ ├── ResultPrinter.php │ │ │ ├── ResultPrinter │ │ │ ├── HTML.php │ │ │ ├── Template │ │ │ │ ├── scenario.html.dist │ │ │ │ ├── scenario_header.html.dist │ │ │ │ ├── scenarios.html.dist │ │ │ │ └── step.html.dist │ │ │ └── Text.php │ │ │ ├── Scenario.php │ │ │ ├── Step.php │ │ │ ├── TestCase.php │ │ │ ├── Then.php │ │ │ └── When.php │ ├── Tests │ │ ├── Functional │ │ │ ├── default.phpt │ │ │ ├── story.phpt │ │ │ └── testdox.phpt │ │ └── _files │ │ │ ├── BowlingGame.php │ │ │ └── BowlingGameSpec.php │ ├── build.xml │ ├── composer.json │ ├── package.xml │ └── phpunit.xml.dist └── phpunit │ ├── CONTRIBUTING.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 │ ├── 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 ├── CHANGELOG.md ├── Dumper.php ├── Escaper.php ├── Exception ├── DumpException.php ├── ExceptionInterface.php ├── ParseException.php └── RuntimeException.php ├── Inline.php ├── LICENSE ├── Parser.php ├── README.md ├── Tests ├── DumperTest.php ├── Fixtures │ ├── YtsAnchorAlias.yml │ ├── YtsBasicTests.yml │ ├── YtsBlockMapping.yml │ ├── YtsDocumentSeparator.yml │ ├── YtsErrorTests.yml │ ├── YtsFlowCollections.yml │ ├── YtsFoldedScalars.yml │ ├── YtsNullsAndEmpties.yml │ ├── YtsSpecificationExamples.yml │ ├── YtsTypeTransfers.yml │ ├── embededPhp.yml │ ├── escapedCharacters.yml │ ├── index.yml │ ├── sfComments.yml │ ├── sfCompact.yml │ ├── sfMergeKey.yml │ ├── sfObjects.yml │ ├── sfQuotes.yml │ ├── sfTests.yml │ └── unindentedCollections.yml ├── InlineTest.php ├── ParseExceptionTest.php ├── ParserTest.php └── YamlTest.php ├── Unescaper.php ├── Yaml.php ├── composer.json └── phpunit.xml.dist /.idea/TutsLibrary.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/.idea/TutsLibrary.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Books/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Books/Book.php -------------------------------------------------------------------------------- /Books/BookFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Books/BookFactory.php -------------------------------------------------------------------------------- /Books/ColoringBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Books/ColoringBook.php -------------------------------------------------------------------------------- /Books/NoSuchBookTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Books/NoSuchBookTypeException.php -------------------------------------------------------------------------------- /Books/Novel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Books/Novel.php -------------------------------------------------------------------------------- /Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Car.php -------------------------------------------------------------------------------- /Library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Library.php -------------------------------------------------------------------------------- /LibraryFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/LibraryFacade.php -------------------------------------------------------------------------------- /Persistence/FileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Persistence/FileSystem.php -------------------------------------------------------------------------------- /Persistence/InMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Persistence/InMemory.php -------------------------------------------------------------------------------- /PersitenceGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/PersitenceGateway.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/README.md -------------------------------------------------------------------------------- /Requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Requirements -------------------------------------------------------------------------------- /Tests/BookFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Tests/BookFactoryTest.php -------------------------------------------------------------------------------- /Tests/BookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Tests/BookTest.php -------------------------------------------------------------------------------- /Tests/ColoringBookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Tests/ColoringBookTest.php -------------------------------------------------------------------------------- /Tests/FileSystemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Tests/FileSystemTest.php -------------------------------------------------------------------------------- /Tests/LibraryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Tests/LibraryTest.php -------------------------------------------------------------------------------- /Tests/NovelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/Tests/NovelTest.php -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/autoload.php -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/Tests/_files/configuration.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/configuration_xinclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/Tests/_files/configuration_xinclude.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureExpected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/Tests/_files/structureExpected.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureIgnoreTextNodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/Tests/_files/structureIgnoreTextNodes.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureIsSameButDataIsNot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/Tests/_files/structureIsSameButDataIsNot.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureWrongNumberOfNodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/Tests/_files/structureWrongNumberOfNodes.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/build.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/PHPCS/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/build/PHPCS/ruleset.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/build/assertions.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/phar-autoload.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/build/phar-autoload.php.in -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/build/phpmd.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/travis-ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/build/travis-ci.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/composer/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/package.xml -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/phpdox.xml.dist -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/phpunit.bat -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/phpunit.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Dumper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Exception/DumpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/DumpException.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/README.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/DumperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/DumperTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/index.yml -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/sfCompact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/sfCompact.yml -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/YamlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/YamlTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Unescaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/Yaml.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/composer.json -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutsplus/advanced-oop-in-php-with-tests/HEAD/vendor/symfony/yaml/Symfony/Component/Yaml/phpunit.xml.dist --------------------------------------------------------------------------------