/**
  * @test
  * @group AssertionAdapter
  * @group AttributeSet
  */
 public function which_attribute_set_is_created_from_attributes_is_configurable()
 {
     ConfigurableAttributeSetFactory::configureWhichAttributeSetToCreate(self::DUMMY_ATTRIBUTE_SET_CLASS);
     $attributeSet = ConfigurableAttributeSetFactory::create([]);
     ConfigurableAttributeSetFactory::configureWhichAttributeSetToCreate('\\Surfnet\\SamlBundle\\SAML2\\Attribute\\AttributeSet');
     $this->assertInstanceOf(self::DUMMY_ATTRIBUTE_SET_CLASS, $attributeSet);
 }