コード例 #1
0
        public void FederationCollection_RegisterFederations_NullCheck()
        {
            var subject = new FederationCollection();

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

            a.ShouldThrow <ArgumentNullException>().And.ParamName.Should().Be("options");
        }
コード例 #2
0
        public void FederationCollection_RegisterFederations_NullCheck()
        {
            var subject = new FederationCollection();

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

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