public function testTomorrowWithTimezone()
 {
     $dt = IntlCarbon::tomorrow('Europe/London');
     $dt2 = new \DateTime('tomorrow', new \DateTimeZone('Europe/London'));
     $this->assertSame($dt2->format('Y-m-d 00:00:00'), $dt->toDateTimeString());
 }