PHPUnit on Laravel

Using .\vendor\bin\phpunit and no output whatsoever?

Add to \phpunit.xml :

<php>
   <ini name="display_errors" value="true"/>
</php>
Next you might see an error, most likely after you used
“composer update” on your project:
Fatal error: Class 'TestCase' not found in ..\tests\TestCase.php on line 8
… if so, then just add to tests\TestCase.php :
 use Tests
… and change all the already included namespaces and add a leading slash to those.
Tadaa!
You can now run your tests and continue again…