public function testUndecidedIfNeitherEnabledNorDisabled()
 {
     $type = new BindingTypeDescriptor('vendor/type');
     $type->load($this->package);
     $binding = new BindingDescriptor('/path', 'vendor/type', array(), 'glob', $this->uuid);
     $binding->load($this->package, $type);
     $this->assertSame(BindingState::UNDECIDED, $binding->getState());
 }