public function is(LimeTesterInterface $expected)
 {
     // allow comparison with objects that implement __toString()
     if ($expected instanceof LimeTesterObject) {
         $expected->is($this);
     } else {
         parent::is($expected);
     }
 }