How does your TestCase class looks like? As far as I know you need to do some preparation before you can run any unit tests! You can find this class in tests/TestCase.php
Aren't you using codeception? You can run the unit tests from as well by codeception like this:
// Run all tests
./vendor/bin/codecept run
// Just the unit tests
./vendor/bin/codecept run unit