I'm trying to make working test suite of very old PHP project (Symfony 2.2.4, PHPUnit 4.8.36).
When i run tests, with command line ./phpunit -c app my/tests/path
i got symfony errors like:
bindRequest() is deprecated since version 2.1 and will be removed in 2.3. Use FormInterface::bind() instead.
I would like run tests without deprecated or strict errors for now. How to do that ?
Note: I don't have phpunit configuration file (and don't know how create it).
Note2: my php.ini already have error_reporting
set to E_ALL & ~E_DEPRECATED & ~E_STRICT
in /etc/php/5.6/cli/php.ini