public void SutThrowsIfFeatureIsNull(AutoContentCustomization sut)
 {
   Action action = () => sut.Customize(null);
   action.ShouldThrow<ArgumentNullException>().WithMessage("*fixture");
 }
Exemplo n.º 2
0
        public void SutThrowsIfFeatureIsNull(AutoContentCustomization sut)
        {
            Action action = () => sut.Customize(null);

            action.ShouldThrow <ArgumentNullException>().WithMessage("*fixture");
        }