| 1 | <?php |
||
| 17 | class AbstractScheduledTest extends \PHPUnit_Framework_TestCase |
||
| 18 | { |
||
| 19 | protected $watcher; |
||
| 20 | |||
| 21 | public function setUp() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @covers \Janitor\Watcher\Scheduled\AbstractScheduled::setTimeZone |
||
| 28 | * |
||
| 29 | * @expectedException \InvalidArgumentException |
||
| 30 | */ |
||
| 31 | public function testBadTimeZone() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @covers \Janitor\Watcher\Scheduled\AbstractScheduled::setTimeZone |
||
| 38 | * @covers \Janitor\Watcher\Scheduled\AbstractScheduled::getTimeZone |
||
| 39 | */ |
||
| 40 | public function testTimeZone() |
||
| 50 | } |
||
| 51 |