├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── codecov.yml ├── composer.json ├── docker-compose.yml ├── docker └── php │ └── Dockerfile ├── phpunit.xml.dist └── src ├── Basho └── Riak.php ├── Doctrine └── DBAL │ └── Connection.php ├── Fixture ├── BlackBox.php ├── Exception │ ├── FixtureEmptyFilenameException.php │ ├── FixtureException.php │ ├── FixtureInvalidDirectoryException.php │ ├── FixtureNotFoundException.php │ ├── FixtureNotValidException.php │ └── OfflineException.php ├── FileFixture.php ├── NonSerializableExceptionContainer.php └── SelfInitializingFixtureTrait.php ├── Profiler └── Profiler.php ├── Swift └── Mailer.php ├── TestCase ├── CommandTestCase.php ├── FixturePathTrait.php ├── UnitTestCase.php └── WebTestCase.php ├── Tests ├── Doctrine │ └── DBAL │ │ └── ConnectionTest.php ├── Fixture │ ├── FileFixtureTest.php │ ├── NotSerializable.php │ └── NotSerializableException.php ├── Profiler │ └── ProfilerTest.php ├── Swift │ └── MailerTest.php ├── TestCase │ ├── UnitTestCaseTest.php │ ├── bar │ │ └── .gitignore │ ├── container.yml │ └── foo │ │ └── .gitignore ├── Util │ ├── FixedDateTimeClass.php │ ├── FixedDateTimeTest.php │ └── FixedDateTimeTraitTest.php ├── _fixtures │ ├── Doctrine │ │ └── DBAL │ │ │ └── Connection │ │ │ ├── sql_begintransaction.fix │ │ │ ├── sql_commit.fix │ │ │ ├── sql_delete.d5f03246b182a3e8c825f1834363dcd4.fix │ │ │ ├── sql_executeupdate.2072660e046f188438b6d2c161c79a7d.fix │ │ │ ├── sql_executeupdate.6493d75f5d1160bd475c1e72a08b7238.fix │ │ │ ├── sql_executeupdate.6a36349c4562e9b0fdf83e8439431486.fix │ │ │ ├── sql_executeupdate.b940a6eef37e0022d141c4b1de87014d.fix │ │ │ ├── sql_executeupdate.cbd9fec6f285963e4bffc2d7a8fb6036.fix │ │ │ ├── sql_fetchall.a39649fd271e363e0f66443e8191501b.fix │ │ │ ├── sql_fetcharray.765cba6385f557133d25736ae82bfc6f.fix │ │ │ ├── sql_fetchassoc.765cba6385f557133d25736ae82bfc6f.fix │ │ │ ├── sql_fetchcolumn.03dc813797b6656eb4197ee4ea65e833.fix │ │ │ ├── sql_getdatabaseplatform.fix │ │ │ ├── sql_insert.5bb383030c65529cf1a7ef17cb00492d.fix │ │ │ ├── sql_insert.72db591ba51019ee42ee97adbec7b713.fix │ │ │ ├── sql_insert.b22732ed6fbb3b1f70da80eb789da0c6.fix │ │ │ ├── sql_lastinsertid.fix │ │ │ ├── sql_quote.09c86b9d47ab18f5b91012732e4392f1.fix │ │ │ ├── sql_quote.ec3b2ac88ae117483f37017a9f4fed9c.fix │ │ │ ├── sql_quoteidentifier.09c86b9d47ab18f5b91012732e4392f1.fix │ │ │ ├── sql_quoteidentifier.ec3b2ac88ae117483f37017a9f4fed9c.fix │ │ │ ├── sql_rollback.fix │ │ │ └── sql_update.b9ec7fc2d55c37e0486b0f5ad0830364.fix │ ├── Fixture │ │ └── FileFixture │ │ │ ├── fixture_test_find.fix │ │ │ ├── fixture_test_save.fix │ │ │ ├── not_serializable_argument.fix │ │ │ ├── not_serializable_exception.fix │ │ │ └── not_serializable_result.fix │ └── schema.sql └── config.yml └── Util ├── FixedDateTime.php └── FixedDateTimeTrait.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/codecov.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/docker/php/Dockerfile -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Basho/Riak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Basho/Riak.php -------------------------------------------------------------------------------- /src/Doctrine/DBAL/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Doctrine/DBAL/Connection.php -------------------------------------------------------------------------------- /src/Fixture/BlackBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/BlackBox.php -------------------------------------------------------------------------------- /src/Fixture/Exception/FixtureEmptyFilenameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/Exception/FixtureEmptyFilenameException.php -------------------------------------------------------------------------------- /src/Fixture/Exception/FixtureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/Exception/FixtureException.php -------------------------------------------------------------------------------- /src/Fixture/Exception/FixtureInvalidDirectoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/Exception/FixtureInvalidDirectoryException.php -------------------------------------------------------------------------------- /src/Fixture/Exception/FixtureNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/Exception/FixtureNotFoundException.php -------------------------------------------------------------------------------- /src/Fixture/Exception/FixtureNotValidException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/Exception/FixtureNotValidException.php -------------------------------------------------------------------------------- /src/Fixture/Exception/OfflineException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/Exception/OfflineException.php -------------------------------------------------------------------------------- /src/Fixture/FileFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/FileFixture.php -------------------------------------------------------------------------------- /src/Fixture/NonSerializableExceptionContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/NonSerializableExceptionContainer.php -------------------------------------------------------------------------------- /src/Fixture/SelfInitializingFixtureTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Fixture/SelfInitializingFixtureTrait.php -------------------------------------------------------------------------------- /src/Profiler/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Profiler/Profiler.php -------------------------------------------------------------------------------- /src/Swift/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Swift/Mailer.php -------------------------------------------------------------------------------- /src/TestCase/CommandTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/TestCase/CommandTestCase.php -------------------------------------------------------------------------------- /src/TestCase/FixturePathTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/TestCase/FixturePathTrait.php -------------------------------------------------------------------------------- /src/TestCase/UnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/TestCase/UnitTestCase.php -------------------------------------------------------------------------------- /src/TestCase/WebTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/TestCase/WebTestCase.php -------------------------------------------------------------------------------- /src/Tests/Doctrine/DBAL/ConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/Doctrine/DBAL/ConnectionTest.php -------------------------------------------------------------------------------- /src/Tests/Fixture/FileFixtureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/Fixture/FileFixtureTest.php -------------------------------------------------------------------------------- /src/Tests/Fixture/NotSerializable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/Fixture/NotSerializable.php -------------------------------------------------------------------------------- /src/Tests/Fixture/NotSerializableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/Fixture/NotSerializableException.php -------------------------------------------------------------------------------- /src/Tests/Profiler/ProfilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/Profiler/ProfilerTest.php -------------------------------------------------------------------------------- /src/Tests/Swift/MailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/Swift/MailerTest.php -------------------------------------------------------------------------------- /src/Tests/TestCase/UnitTestCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/TestCase/UnitTestCaseTest.php -------------------------------------------------------------------------------- /src/Tests/TestCase/bar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/TestCase/bar/.gitignore -------------------------------------------------------------------------------- /src/Tests/TestCase/container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/TestCase/container.yml -------------------------------------------------------------------------------- /src/Tests/TestCase/foo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/TestCase/foo/.gitignore -------------------------------------------------------------------------------- /src/Tests/Util/FixedDateTimeClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/Util/FixedDateTimeClass.php -------------------------------------------------------------------------------- /src/Tests/Util/FixedDateTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/Util/FixedDateTimeTest.php -------------------------------------------------------------------------------- /src/Tests/Util/FixedDateTimeTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/Util/FixedDateTimeTraitTest.php -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_begintransaction.fix: -------------------------------------------------------------------------------- 1 | a:2:{s:6:"result";N;s:4:"args";a:0:{}} -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_commit.fix: -------------------------------------------------------------------------------- 1 | a:2:{s:6:"result";N;s:4:"args";a:0:{}} -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_delete.d5f03246b182a3e8c825f1834363dcd4.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_delete.d5f03246b182a3e8c825f1834363dcd4.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.2072660e046f188438b6d2c161c79a7d.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.2072660e046f188438b6d2c161c79a7d.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.6493d75f5d1160bd475c1e72a08b7238.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.6493d75f5d1160bd475c1e72a08b7238.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.6a36349c4562e9b0fdf83e8439431486.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.6a36349c4562e9b0fdf83e8439431486.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.b940a6eef37e0022d141c4b1de87014d.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.b940a6eef37e0022d141c4b1de87014d.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.cbd9fec6f285963e4bffc2d7a8fb6036.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_executeupdate.cbd9fec6f285963e4bffc2d7a8fb6036.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_fetchall.a39649fd271e363e0f66443e8191501b.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_fetchall.a39649fd271e363e0f66443e8191501b.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_fetcharray.765cba6385f557133d25736ae82bfc6f.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_fetcharray.765cba6385f557133d25736ae82bfc6f.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_fetchassoc.765cba6385f557133d25736ae82bfc6f.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_fetchassoc.765cba6385f557133d25736ae82bfc6f.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_fetchcolumn.03dc813797b6656eb4197ee4ea65e833.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_fetchcolumn.03dc813797b6656eb4197ee4ea65e833.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_getdatabaseplatform.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_getdatabaseplatform.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_insert.5bb383030c65529cf1a7ef17cb00492d.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_insert.5bb383030c65529cf1a7ef17cb00492d.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_insert.72db591ba51019ee42ee97adbec7b713.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_insert.72db591ba51019ee42ee97adbec7b713.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_insert.b22732ed6fbb3b1f70da80eb789da0c6.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_insert.b22732ed6fbb3b1f70da80eb789da0c6.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_lastinsertid.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_lastinsertid.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_quote.09c86b9d47ab18f5b91012732e4392f1.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_quote.09c86b9d47ab18f5b91012732e4392f1.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_quote.ec3b2ac88ae117483f37017a9f4fed9c.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_quote.ec3b2ac88ae117483f37017a9f4fed9c.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_quoteidentifier.09c86b9d47ab18f5b91012732e4392f1.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_quoteidentifier.09c86b9d47ab18f5b91012732e4392f1.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_quoteidentifier.ec3b2ac88ae117483f37017a9f4fed9c.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_quoteidentifier.ec3b2ac88ae117483f37017a9f4fed9c.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_rollback.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_rollback.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_update.b9ec7fc2d55c37e0486b0f5ad0830364.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Doctrine/DBAL/Connection/sql_update.b9ec7fc2d55c37e0486b0f5ad0830364.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Fixture/FileFixture/fixture_test_find.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Fixture/FileFixture/fixture_test_find.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Fixture/FileFixture/fixture_test_save.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Fixture/FileFixture/fixture_test_save.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Fixture/FileFixture/not_serializable_argument.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Fixture/FileFixture/not_serializable_argument.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Fixture/FileFixture/not_serializable_exception.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Fixture/FileFixture/not_serializable_exception.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/Fixture/FileFixture/not_serializable_result.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/Fixture/FileFixture/not_serializable_result.fix -------------------------------------------------------------------------------- /src/Tests/_fixtures/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/_fixtures/schema.sql -------------------------------------------------------------------------------- /src/Tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Tests/config.yml -------------------------------------------------------------------------------- /src/Util/FixedDateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Util/FixedDateTime.php -------------------------------------------------------------------------------- /src/Util/FixedDateTimeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastzero/test-tools/HEAD/src/Util/FixedDateTimeTrait.php --------------------------------------------------------------------------------