public void Ctor_InfoNull_Error()
		{
			CustomAssert.ThrowsException<CodedArgumentNullException>(() =>
			{
				DummyConstraint c = new DummyConstraint(null, new System.Runtime.Serialization.StreamingContext());
			});
		}
		public void Ctor_NameNull_Error()
		{
			CustomAssert.ThrowsException<CodedArgumentNullOrWhiteSpaceException>(() =>
			{
				DummyConstraint c = new DummyConstraint(null);

			});
		}
		public void GetParameters_ParamsNull_Error()
		{
			CustomAssert.ThrowsException<CodedArgumentNullException>(() =>
			{
				DummyConstraint c = new DummyConstraint();
				c.GetParametersTest(null);
			});
		}
		public void Validate_ValueNull_Error()
		{
			CustomAssert.ThrowsException<CodedArgumentNullException>(() =>
			{
				DummyConstraint c = new DummyConstraint();
				c.OnValidationTest(new List<ParameterValidationResult>(), null, ParameterDataType.Int32, Constants.MemberName, Constants.MemberName);
			});
		}
		public void AssertDataType_ExpectedTypesNull_Error()
		{
			CustomAssert.ThrowsException<CodedArgumentNullException>(() =>
			{
				DummyConstraint c = new DummyConstraint();
				c.AssertDataTypeTest(ParameterDataType.Bool, null);
			});
		}