for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JhFlexiTime\Notification;
use PHPUnit_Framework_TestCase;
/**
* Class MissingBookingsNotificationTest
* @package JhFlexiTime\Notification
* @author Aydin Hassan <[email protected]>
*/
class MissingBookingsNotificationTest extends PHPUnit_Framework_TestCase
{
public function testGetters()
$event = new MissingBookingsNotification([], []);
$this->assertSame('missing-bookings', $event->getName());
$this->assertSame([], $event->getPeriod());
$this->assertSame([], $event->getMissingBookings());
}