use Symfony\Component\Dotenv\Dotenv;
use Symfony\Component\Dotenv\Exception\FormatException;
use Symfony\Component\Dotenv\Exception\PathException;
class DotenvTest extends TestCase
{ /**
* @dataProvider getEnvDataWithFormatErrors
*/
public function testParseWithFormatError($data,
$error) { $dotenv =
new Dotenv();
try { $dotenv->
parse($data);
$this->
fail('Should throw a FormatException'
);
} catch (FormatException
$e) { $this->
assertStringMatchesFormat($error,
$e->
getMessage());
} } public static function getEnvDataWithFormatErrors() {