Example #1
0
 /**
  * Test simple notify call
  */
 public function testNotify()
 {
     $sText = md5(time());
     $this->assertInstanceOf('\\notifyy\\AbstractAdapter', $this->_object->notify(\notifyy\Notifyable::SUCCESS, $sText));
     $this->assertStringEndsWith($sText . PHP_EOL, file_get_contents($this->_object->getFile()));
 }