File "ActionScheduler_NullAction_Test.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/.wp-cli/wp-content/plugins/mailchimp-for-woocommerce_bk/includes/vendor/action-scheduler/tests/phpunit/jobs/ActionScheduler_NullAction_Test.php
File size: 382 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

/**
 * Class ActionScheduler_NullAction_Test
 * @group actions
 */
class ActionScheduler_NullAction_Test extends ActionScheduler_UnitTestCase {
	public function test_null_action() {
		$action = new ActionScheduler_NullAction();

		$this->assertEmpty($action->get_hook());
		$this->assertEmpty($action->get_args());
		$this->assertNull($action->get_schedule()->next());
	}
}