public void DoubleParameterGetWithNullFunctionThrows()
        {
            var builder = new DelegatingSpecimenBuilder();

            Assert.Throws <ArgumentNullException>(() =>
                                                  builder.Get <float, float, short>(null));
        }
        public void QuadrupleParameterGetWithNullFunctionThrows()
        {
            var builder = new DelegatingSpecimenBuilder();

            Assert.Throws <ArgumentNullException>(() =>
                                                  builder.Get <object, object, short, Type, Version>(null));
        }
        public void TripleParameterGetWithNullFunctionThrows()
        {
            var builder = new DelegatingSpecimenBuilder();

            Assert.Throws <ArgumentNullException>(() =>
                                                  builder.Get <float, Type, Version, string>(null));
        }
 public void DoubleParameterGetWithNullFunctionThrows()
 {
     var builder = new DelegatingSpecimenBuilder();
     Assert.Throws<ArgumentNullException>(() =>
         builder.Get<float, float, short>(null));
 }
 public void QuadrupleParameterGetWithNullFunctionThrows()
 {
     var builder = new DelegatingSpecimenBuilder();
     Assert.Throws<ArgumentNullException>(() =>
         builder.Get<object, object, short, Type, Version>(null));
 }
 public void TripleParameterGetWithNullFunctionThrows()
 {
     var builder = new DelegatingSpecimenBuilder();
     Assert.Throws<ArgumentNullException>(() =>
         builder.Get<float, Type, Version, string>(null));
 }