Extending WP_UnitTestCase without any Tests

You just need to define the MZMBO_UnitTestCase class as abstract:

abstract class MZMBO_UnitTestCase extends WP_UnitTestCase
{
    public function el($message){
        file_put_contents('./log_'.date("j.n.Y").'.log', $message, FILE_APPEND);
    }
}

tech