I'm trying to upgrade our unit tests from PHPUnit 5.7 to 6.4. The major revision changed the autoloading of classes and I've been going around updating my base test classes to use the new ones.
We use the implementation of the ArrayDataSet found here:
https://phpunit.de/manual/current/en/database.html (about halfway down, you can search for "MyApp_DbUnit_ArrayDataSet" to get to the correct section).
The documentation still references classes for this purpose using the old style auto loading (e.g. PHPUnit_Extensions_Database_DataSet_AbstractDataSet), which no longer exist. And I'm not finding these classes anywhere, specifically:
PHPUnit_Extensions_Database_DataSet_AbstractDataSet PHPUnit_Extensions_Database_DataSet_DefaultTableMetaData PHPUnit_Extensions_Database_DataSet_DefaultTable PHPUnit_Extensions_Database_DataSet_DefaultTableIterator
It would seem the entire Extensions portion of 6.4 seems to be missing. Am I missing something?
edit I should mention that I'm using the 6.4 phar