public function testEnablingBehavior()
 {
     $behavior = new NewBehavior();
     $this->component->attachBehavior('newBehavior', $behavior);
     $this->component->disableBehavior('newBehavior');
     $this->assertFalse($behavior->getEnabled());
     $this->component->enableBehavior('newBehavior');
     $this->assertTrue($behavior->getEnabled());
 }