Created
September 5, 2018 06:29
-
-
Save thyseus/7ce733ce015345d3738c115a30afa444 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```php | |
class ReminderCest | |
{ | |
public function _before(UnitTester $I) | |
{ | |
} | |
public function _after(UnitTester $I) | |
{ | |
} | |
public function testRunReminders(UnitTester $I) | |
{ | |
$config = require(__DIR__ . '/../../config/console.php'); | |
$application = new yii\console\Application($config); | |
$application->runAction('reminder/index'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
class ReminderCest
{
public function _before(UnitTester $I)
{
}
}