The unit tests in this library are not compatible with the latest version of PHPUnit, currently version 8.
For example...
class CredentialsTest extends \PHPUnit_Framework_TestCase
should be...
class CredentialsTest extends \PHPUnit\Framework\TestCase
...In PHPUnit 8 and above.
The unit tests in this library are not compatible with the latest version of PHPUnit, currently version 8.
For example...
class CredentialsTest extends \PHPUnit_Framework_TestCase
should be...class CredentialsTest extends \PHPUnit\Framework\TestCase
...In PHPUnit 8 and above.Thanks.