├── src ├── phpunit │ ├── Tests │ │ ├── _files │ │ │ ├── bar.xml │ │ │ ├── foo.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── NoTestCaseClass.php │ │ │ ├── NotVoidTestCase.php │ │ │ ├── EmptyTestCaseTest.php │ │ │ ├── NonStatic.php │ │ │ ├── Success.php │ │ │ ├── NoTestCases.php │ │ │ ├── NothingTest.php │ │ │ ├── AbstractTest.php │ │ │ ├── MockRunner.php │ │ │ ├── NoArgTestCaseTest.php │ │ │ ├── Error.php │ │ │ ├── Failure.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── Struct.php │ │ │ ├── ConcreteTest.php │ │ │ ├── InheritedTestCase.php │ │ │ ├── OverrideTestCase.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── IncompleteTest.php │ │ │ ├── WasRun.php │ │ │ ├── OneTestCase.php │ │ │ ├── NotPublicTestCase.php │ │ │ ├── SampleClass.php │ │ │ ├── Calculator.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── Singleton.php │ │ │ ├── DataProviderTest.php │ │ │ ├── MultiDependencyTest.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── structureWrongNumberOfNodes.xml │ │ │ ├── StackTest.php │ │ │ ├── OutputTestCase.php │ │ │ ├── TestIterator.php │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ ├── ExceptionInTest.php │ │ │ ├── ExceptionInSetUpTest.php │ │ │ ├── structureExpected.xml │ │ │ ├── ExceptionInTearDownTest.php │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ └── ClassWithNonPublicAttributes.php │ │ ├── Regression │ │ │ ├── 578 │ │ │ │ └── Issue578Test.php │ │ │ ├── 684 │ │ │ │ └── Issue684Test.php │ │ │ ├── 783 │ │ │ │ ├── OneTest.php │ │ │ │ ├── TwoTest.php │ │ │ │ ├── ParentSuite.php │ │ │ │ └── ChildSuite.php │ │ │ ├── 1021 │ │ │ │ └── Issue1021Test.php │ │ │ ├── GitHub │ │ │ │ ├── 74 │ │ │ │ │ ├── NewException.php │ │ │ │ │ └── Issue74Test.php │ │ │ │ ├── 433 │ │ │ │ │ └── Issue433Test.php │ │ │ │ ├── 445 │ │ │ │ │ └── Issue445Test.php │ │ │ │ ├── 503 │ │ │ │ │ └── Issue503Test.php │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 74.phpt │ │ │ │ └── 503.phpt │ │ │ ├── 1021.phpt │ │ │ ├── 783.phpt │ │ │ ├── 684.phpt │ │ │ └── 578.phpt │ │ └── TextUI │ │ │ ├── skeleton.phpt │ │ │ ├── dependencies2.phpt │ │ │ ├── default.phpt │ │ │ ├── concrete-test-class.phpt │ │ │ ├── dataprovider-testdox.phpt │ │ │ ├── dependencies3.phpt │ │ │ ├── dependencies2-isolation.phpt │ │ │ ├── testdox.phpt │ │ │ ├── default-isolation.phpt │ │ │ ├── strict.phpt │ │ │ ├── dependencies3-isolation.phpt │ │ │ ├── filter-class.phpt │ │ │ ├── group.phpt │ │ │ ├── strict-incomplete.phpt │ │ │ ├── tap.phpt │ │ │ ├── filter-method.phpt │ │ │ ├── exclude-group.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── empty-testcase.phpt │ │ │ ├── abstract-test-class.phpt │ │ │ ├── strict-isolation.phpt │ │ │ ├── filter-class-isolation.phpt │ │ │ ├── group-isolation.phpt │ │ │ ├── filter-method-isolation.phpt │ │ │ ├── exclude-group-isolation.phpt │ │ │ ├── testdox-text.phpt │ │ │ ├── debug.phpt │ │ │ ├── testdox-html.phpt │ │ │ ├── log-tap.phpt │ │ │ └── dependencies.phpt │ ├── .gitattributes │ ├── PHPUnit │ │ └── Util │ │ │ └── Skeleton │ │ │ └── Template │ │ │ ├── Class.tpl.dist │ │ │ ├── Method.tpl.dist │ │ │ ├── TestMethodException.tpl.dist │ │ │ ├── TestMethodExceptionStatic.tpl.dist │ │ │ ├── TestMethodBool.tpl.dist │ │ │ ├── TestMethodBoolStatic.tpl.dist │ │ │ ├── TestMethod.tpl.dist │ │ │ ├── TestMethodStatic.tpl.dist │ │ │ ├── IncompleteTestMethod.tpl.dist │ │ │ └── TestClass.tpl.dist │ ├── .gitignore │ └── build │ │ └── PHPCS │ │ └── Sniffs │ │ └── Whitespace │ │ └── ConcatenationSpacingSniff.php ├── dbunit │ ├── .gitattributes │ ├── .gitignore │ ├── Tests │ │ ├── _files │ │ │ ├── XmlDataSets │ │ │ │ ├── AllEmptyTableInsertTest.xml │ │ │ │ ├── DeleteOperationTest.xml │ │ │ │ ├── DeleteAllOperationTest.xml │ │ │ │ ├── FlatXmlWriterEntities.xml │ │ │ │ ├── XmlWriterEntities.xml │ │ │ │ ├── EmptyTableInsertTest.xml │ │ │ │ ├── RowBasedExecute.xml │ │ │ │ ├── InsertOperationTest.xml │ │ │ │ ├── UpdateOperationTest.xml │ │ │ │ ├── DeleteOperationResult.xml │ │ │ │ ├── FilteredTestFixture.xml │ │ │ │ ├── FlatXmlDataSet.xml │ │ │ │ ├── QueryDataSetTest.xml │ │ │ │ ├── FlatXmlWriter.xml │ │ │ │ ├── FilteredTestComparison.xml │ │ │ │ ├── OperationsTestFixture.xml │ │ │ │ ├── AllEmptyTableInsertResult.xml │ │ │ │ ├── ReplaceOperationTest.xml │ │ │ │ ├── UpdateOperationResult.xml │ │ │ │ ├── OperationsMySQLTestFixture.xml │ │ │ │ ├── XmlWriter.xml │ │ │ │ ├── EmptyTableInsertResult.xml │ │ │ │ ├── InsertOperationResult.xml │ │ │ │ └── ReplaceOperationResult.xml │ │ │ ├── CsvDataSets │ │ │ │ ├── table1.csv │ │ │ │ └── table2.csv │ │ │ └── YamlDataSets │ │ │ │ └── testDataSet.yaml │ │ └── DB │ │ │ └── DefaultDatabaseConnectionTest.php │ ├── Samples │ │ └── BankAccountDB │ │ │ └── _files │ │ │ ├── bank-account-seed.xml │ │ │ ├── bank-account-after-deposits.xml │ │ │ ├── bank-account-after-withdrawals.xml │ │ │ └── bank-account-after-new-account.xml │ ├── ChangeLog.markdown │ └── build │ │ └── PHPCS │ │ └── Sniffs │ │ ├── ControlStructures │ │ └── ControlSignatureSniff.php │ │ └── Whitespace │ │ └── ConcatenationSpacingSniff.php ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.markdown │ ├── build │ │ └── PHPCS │ │ │ └── Sniffs │ │ │ ├── ControlStructures │ │ │ └── ControlSignatureSniff.php │ │ │ └── Whitespace │ │ │ └── ConcatenationSpacingSniff.php │ └── phpunit.xml.dist ├── phpcov │ ├── .gitattributes │ └── .gitignore ├── phpcpd │ ├── .gitattributes │ ├── .gitignore │ ├── build │ │ ├── phpdox.xml │ │ └── PHPCS │ │ │ └── Sniffs │ │ │ ├── ControlStructures │ │ │ └── ControlSignatureSniff.php │ │ │ └── Whitespace │ │ │ └── ConcatenationSpacingSniff.php │ └── ChangeLog.markdown ├── phpdcd │ ├── .gitattributes │ ├── Tests │ │ └── _files │ │ │ ├── function_call2.php │ │ │ ├── function_call.php │ │ │ ├── static_method_call.php │ │ │ ├── method_call.php │ │ │ ├── issue_5.php │ │ │ └── declarations.php │ ├── .gitignore │ ├── phpunit.xml.dist │ └── build │ │ └── PHPCS │ │ └── Sniffs │ │ ├── ControlStructures │ │ └── ControlSignatureSniff.php │ │ └── Whitespace │ │ └── ConcatenationSpacingSniff.php ├── phploc │ ├── .gitattributes │ ├── .gitignore │ ├── Tests │ │ └── _files │ │ │ ├── tests.php │ │ │ ├── twoTestsThatIndirectlyExtendPHPUnitTestCase.php │ │ │ └── source.php │ ├── phpunit.xml.dist │ └── build │ │ └── PHPCS │ │ └── Sniffs │ │ ├── ControlStructures │ │ └── ControlSignatureSniff.php │ │ └── Whitespace │ │ └── ConcatenationSpacingSniff.php ├── php-code-coverage │ ├── .gitattributes │ ├── Tests │ │ └── _files │ │ │ ├── CoveredFunction.php │ │ │ ├── source_without_ignore.php │ │ │ ├── CoverageNoneTest.php │ │ │ ├── CoverageFunctionTest.php │ │ │ ├── CoverageClassTest.php │ │ │ ├── source_without_namespace.php │ │ │ ├── CoverageMethodTest.php │ │ │ ├── CoveragePrivateTest.php │ │ │ ├── CoveragePublicTest.php │ │ │ ├── CoverageNotPublicTest.php │ │ │ ├── CoverageProtectedTest.php │ │ │ ├── CoverageClassExtendedTest.php │ │ │ ├── CoverageNotPrivateTest.php │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ ├── CoverageNotProtectedTest.php │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ ├── source_with_namespace.php │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ ├── source_with_ignore.php │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ ├── CoveredClass.php │ │ │ ├── BankAccount.php │ │ │ └── NamespaceCoveredClass.php │ ├── .gitignore │ ├── scripts │ │ ├── auto_append.php │ │ └── auto_prepend.php │ ├── PHP │ │ └── CodeCoverage │ │ │ └── Report │ │ │ └── HTML │ │ │ └── Renderer │ │ │ └── Template │ │ │ ├── file.png │ │ │ ├── glass.png │ │ │ ├── close12_1.gif │ │ │ ├── directory.png │ │ │ └── yui_item.js │ ├── build │ │ └── PHPCS │ │ │ └── Sniffs │ │ │ ├── ControlStructures │ │ │ └── ControlSignatureSniff.php │ │ │ └── Whitespace │ │ │ └── ConcatenationSpacingSniff.php │ └── phpunit.xml.dist ├── php-file-iterator │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.markdown │ └── build │ │ └── PHPCS │ │ └── Sniffs │ │ ├── ControlStructures │ │ └── ControlSignatureSniff.php │ │ └── Whitespace │ │ └── ConcatenationSpacingSniff.php ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.markdown │ └── build │ │ └── PHPCS │ │ └── Sniffs │ │ ├── ControlStructures │ │ └── ControlSignatureSniff.php │ │ └── Whitespace │ │ └── ConcatenationSpacingSniff.php ├── php-token-stream │ ├── .gitattributes │ ├── Tests │ │ └── _files │ │ │ ├── issue19.php │ │ │ ├── classInNamespace.php │ │ │ ├── classInScopedNamespace.php │ │ │ ├── source2.php │ │ │ ├── classExtendsNamespacedClass.php │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ ├── source3.php │ │ │ ├── source.php │ │ │ └── source4.php │ ├── .gitignore │ ├── build │ │ └── PHPCS │ │ │ └── Sniffs │ │ │ ├── ControlStructures │ │ │ └── ControlSignatureSniff.php │ │ │ └── Whitespace │ │ │ └── ConcatenationSpacingSniff.php │ ├── ChangeLog.markdown │ └── phpunit.xml.dist ├── phpunit-mock-objects │ ├── .gitattributes │ ├── Tests │ │ ├── _files │ │ │ ├── AnInterface.php │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── FunctionCallback.php │ │ │ ├── SomeClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── MethodCallback.php │ │ │ └── Mockable.php │ │ └── MockObject │ │ │ ├── wsdl_class_partial.phpt │ │ │ └── wsdl_class.phpt │ ├── PHPUnit │ │ └── Framework │ │ │ └── MockObject │ │ │ └── Generator │ │ │ ├── trait_class.tpl.dist │ │ │ ├── wsdl_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ ├── mocked_object_method.tpl.dist │ │ │ └── mocked_static_method.tpl.dist │ ├── .gitignore │ ├── ChangeLog.markdown │ ├── build │ │ └── PHPCS │ │ │ └── Sniffs │ │ │ ├── ControlStructures │ │ │ └── ControlSignatureSniff.php │ │ │ └── Whitespace │ │ │ └── ConcatenationSpacingSniff.php │ └── phpunit.xml.dist ├── phpunit-selenium │ ├── .gitignore │ ├── .travis.yml │ ├── selenium-1-tests │ │ └── html │ │ │ ├── CamelCasePage.html │ │ │ ├── test_frames.html │ │ │ ├── test_form_elements.html │ │ │ ├── test_geometry.html │ │ │ ├── test_element_selection.html │ │ │ ├── test_store_value.html │ │ │ ├── test_open.html │ │ │ ├── test_dummy_page.html │ │ │ ├── test_slowloading_page.html │ │ │ ├── test_delayed_element.html │ │ │ ├── test_select_window_popup.html │ │ │ ├── test_click_page2.html │ │ │ ├── test_verifications.html │ │ │ └── test_wait.html │ ├── phpunit-selenium-bootstrap.php │ ├── before_script.sh │ ├── build │ │ └── PHPCS │ │ │ └── Sniffs │ │ │ └── Whitespace │ │ │ └── ConcatenationSpacingSniff.php │ ├── Tests │ │ ├── SeleniumTestCase │ │ │ └── Ticket114Test.php │ │ └── Selenium2TestCase │ │ │ └── BaseTestCase.php │ └── README.txt ├── phpunit-skeleton-generator │ ├── PHPUnit │ │ └── SkeletonGenerator │ │ │ └── Template │ │ │ ├── Class.tpl.dist │ │ │ ├── Method.tpl.dist │ │ │ ├── TestMethodException.tpl.dist │ │ │ ├── TestMethodExceptionStatic.tpl.dist │ │ │ ├── TestMethodBool.tpl.dist │ │ │ ├── TestMethodBoolStatic.tpl.dist │ │ │ ├── TestMethod.tpl.dist │ │ │ ├── TestMethodStatic.tpl.dist │ │ │ ├── IncompleteTestMethod.tpl.dist │ │ │ └── TestClass.tpl.dist │ ├── .gitignore │ ├── ChangeLog.markdown │ ├── build │ │ └── PHPCS │ │ │ └── Sniffs │ │ │ ├── ControlStructures │ │ │ └── ControlSignatureSniff.php │ │ │ └── Whitespace │ │ │ └── ConcatenationSpacingSniff.php │ ├── Tests │ │ └── _fixture │ │ │ ├── BankAccount.php │ │ │ └── BankAccountNS.php │ └── phpunit.xml.dist └── php │ └── ezc │ ├── ConsoleTools │ ├── exceptions │ │ ├── exception.php │ │ ├── option.php │ │ ├── argument.php │ │ ├── no_position_stored.php │ │ ├── dialog_abort.php │ │ ├── no_valid_dialog_result.php │ │ ├── option_already_registered.php │ │ ├── invalid_output_target.php │ │ ├── option_no_alias.php │ │ ├── option_string_not_wellformed.php │ │ ├── invalid_option_name.php │ │ ├── option_not_exists.php │ │ ├── option_mandatory_violation.php │ │ ├── option_too_many_values.php │ │ ├── option_missing_value.php │ │ └── argument_mandatory_violation.php │ └── interfaces │ │ ├── menu_dialog_validator.php │ │ └── question_dialog_validator.php │ └── Base │ ├── exceptions │ ├── file_exception.php │ ├── property_not_found.php │ ├── invalid_parent_class.php │ ├── functionality_not_supported.php │ ├── setting_not_found.php │ └── invalid_callback_class.php │ ├── struct.php │ └── interfaces │ ├── configuration_initializer.php │ └── exportable.php ├── .gitignore ├── bin ├── phpcov ├── phpunit ├── phpcpd ├── phpdcd ├── phploc ├── phpunit-skelgen └── dbunit ├── composer.json └── README.md /src/phpunit/Tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/dbunit/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/phpcov/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/phpcov/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | phpunit.xml 3 | -------------------------------------------------------------------------------- /src/phpcpd/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/phpdcd/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/phploc/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/php-file-iterator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /src/phpdcd/Tests/_files/function_call2.php: -------------------------------------------------------------------------------- 1 | aMethod(); 4 | -------------------------------------------------------------------------------- /src/php-code-coverage/Tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/php-timer/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /bin/phpcpd: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 2 | 3 | CamelCase page 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/phpunit/Tests/_files/Success.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /src/phpunit/Tests/_files/NoTestCases.php: -------------------------------------------------------------------------------- 1 | stop(); 3 | 4 | $writer = new PHP_CodeCoverage_Report_HTML; 5 | $writer->process($coverage, '/tmp/coverage'); 6 | -------------------------------------------------------------------------------- /src/phpunit/Tests/_files/AbstractTest.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/phpunit/Tests/_files/NoArgTestCaseTest.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/phpunit/Tests/_files/ThrowNoExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EHER/phpunit-all-in-one/HEAD/src/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/file.png -------------------------------------------------------------------------------- /src/phpunit-skeleton-generator/PHPUnit/SkeletonGenerator/Template/Class.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | This page contains frames. 5 |