Delete test-case.php

This commit is contained in:
Dennis Dornon 2020-03-04 20:11:48 -07:00 committed by GitHub
parent e88f5e5df5
commit b1528812cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +0,0 @@
<?php
/**
* Base test case for MainWP Dashboard.
*
* @package Mainwp_Child
* @author MainWP
*/
class TestCase extends MainWP_Unit_Test_Case {
/**
* Emulate deactivating, then subsequently reactivating the plugin.
*/
protected static function reactivate_plugin() {
$plugin = basename( dirname( __DIR__ ) ) . '/mainwp-child.php';
do_action( 'deactivate_' . $plugin, false );
do_action( 'activate_' . $plugin, false );
}
}