1 | <?php |
||
7 | class ActionScheduler_NullAction_Test extends ActionScheduler_UnitTestCase { |
||
8 | public function test_null_action() { |
||
9 | $action = new ActionScheduler_NullAction(); |
||
10 | |||
11 | $this->assertEmpty($action->get_hook()); |
||
12 | $this->assertEmpty($action->get_args()); |
||
13 | $this->assertNull($action->get_schedule()->next()); |
||
14 | } |
||
15 | } |
||
16 |