public function testItShouldCheckIfIsYesterdayThrowsException()
 {
     $this->setExpectedException(Exception::class);
     $date = new DateTime('now');
     Assert::isYesterday($date);
 }