Use this module to kickstart unit tests or integration tests for your existing module.
composer require yireo/magento2-test-generator
bin/magento module:enable Yireo_TestGenerator
Generate integration tests for the module Yireo_Example
if they don't exist yet:
bin/magento yireo:test:generate Yireo_Example
Or generate integration tests, overriding existing tests as well (DANGEROUS):
bin/magento yireo:test:generate Yireo_Example --override-existing=1
Or generate unit tests:
bin/magento yireo:test:generate Yireo_Example --type=unit