| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 2 | Features | 1 |
| 1 | <?php |
||
| 9 | public function testSetCreated() |
||
| 10 | { |
||
| 11 | $n = new Notification(); |
||
| 12 | $c1 = $n->getCreated(); |
||
| 13 | |||
| 14 | $n->setCreatedValue(); |
||
| 15 | |||
| 16 | $c2 = $n->getCreated(); |
||
| 17 | |||
| 18 | sleep(1); |
||
| 19 | |||
| 20 | $this->assertNull($c1); |
||
| 21 | $this->assertNotNull($c2); |
||
| 22 | $this->assertGreaterThanOrEqual($c2, new \DateTime()); |
||
| 23 | } |
||
| 25 |