PHPunit : Test a method with redirection
php web Development phpunit testReading time: 1 minute, 0 seconds
Development's tests are a mandatory step for guarantee the validity and viability of the code. Sometimes, the tests writing are not trivial. For instance, a method can do an HTTP redirection :
class MyClass
{
/**
* Method to redirect to https://vfac.fr
**/
public function doRedire...