public function testIsInitialized()
 {
     $this->assertFalse($this->object->isInitialized());
     $this->object->initialize();
     $this->assertTrue($this->object->isInitialized());
 }