├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── composer.json ├── phpstan.neon ├── phpunit.xml.dist ├── src ├── AccessibilityHelperTrait.php └── CompareTrait.php └── tests ├── TestCase ├── AccessibilityHelperTraitTest.php ├── CompareTraitTest.php ├── html │ ├── attributes.html │ ├── empty.html │ ├── nested.html │ └── simple.html ├── json │ ├── empty.json │ ├── simple-array.json │ ├── simple-dict.json │ └── simple-int.json └── xml │ ├── empty.xml │ └── simple.xml └── comparisons └── CompareTrait ├── attributes.html ├── empty.html ├── empty.json ├── empty.xml ├── nested.html ├── simple-array.json ├── simple-dict.json ├── simple-int.json ├── simple.html └── simple.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | level: 7 3 | paths: 4 | - src/ 5 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AccessibilityHelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/src/AccessibilityHelperTrait.php -------------------------------------------------------------------------------- /src/CompareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/src/CompareTrait.php -------------------------------------------------------------------------------- /tests/TestCase/AccessibilityHelperTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/TestCase/AccessibilityHelperTraitTest.php -------------------------------------------------------------------------------- /tests/TestCase/CompareTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/TestCase/CompareTraitTest.php -------------------------------------------------------------------------------- /tests/TestCase/html/attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/TestCase/html/attributes.html -------------------------------------------------------------------------------- /tests/TestCase/html/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestCase/html/nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/TestCase/html/nested.html -------------------------------------------------------------------------------- /tests/TestCase/html/simple.html: -------------------------------------------------------------------------------- 1 |
A paragraph.
2 | -------------------------------------------------------------------------------- /tests/TestCase/json/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestCase/json/simple-array.json: -------------------------------------------------------------------------------- 1 | ["one", "two"] 2 | -------------------------------------------------------------------------------- /tests/TestCase/json/simple-dict.json: -------------------------------------------------------------------------------- 1 | {"one": 1, "two": 2} 2 | -------------------------------------------------------------------------------- /tests/TestCase/json/simple-int.json: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/TestCase/xml/empty.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestCase/xml/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/TestCase/xml/simple.xml -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/comparisons/CompareTrait/attributes.html -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/empty.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/empty.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/comparisons/CompareTrait/nested.html -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/simple-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/comparisons/CompareTrait/simple-array.json -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/simple-dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/comparisons/CompareTrait/simple-dict.json -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/simple-int.json: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/simple.html: -------------------------------------------------------------------------------- 1 |2 | A paragraph. 3 |
4 | -------------------------------------------------------------------------------- /tests/comparisons/CompareTrait/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfCake/cakephp-test-utilities/HEAD/tests/comparisons/CompareTrait/simple.xml --------------------------------------------------------------------------------