/**
  * @expectedException \LightSaml\Error\LightSamlBuildException
  * @expectedExceptionMessage Profile role not set
  */
 public function test_build_throws_exception_when_profile_role_not_set()
 {
     $builder = new ProfileContextBuilder();
     $builder->setRequest(new Request());
     $builder->setOwnEntityDescriptorProvider(new FixedEntityDescriptorProvider(new EntityDescriptor()));
     $builder->setProfileId(Profiles::METADATA);
     $builder->build();
 }