public function testIsTargetType()
 {
     $this->assertFalse($this->object->isTargetType('foo'));
     $this->assertTrue($this->object->isTargetType(123));
     $this->assertTrue($this->object->isTargetType(new \stdClass()));
 }