public void FederationCollection_RegisterFederations_NullCheck()
        {
            var subject = new FederationCollection();

            Action a = () => subject.RegisterFederations(null);

            a.ShouldThrow <ArgumentNullException>().And.ParamName.Should().Be("options");
        }
        public void FederationCollection_RegisterFederations_NullCheck()
        {
            var subject = new FederationCollection();

            Action a = () => subject.RegisterFederations(null);

            a.ShouldThrow<ArgumentNullException>().And.ParamName.Should().Be("options");
        }