public function testCreateWillUpdateTimes()
 {
     $this->assertEquals(0, $this->nonExistingAddress->lastModified());
     $this->assertEquals(0, $this->nonExistingAddress->createdAt());
     $this->nonExistingAddress->create();
     $this->assertGreaterThan(0, $this->nonExistingAddress->lastModified());
     $this->assertGreaterThan(0, $this->nonExistingAddress->createdAt());
 }