public void SetParameters_ParamInv_Error()
		{
			CustomAssert.ThrowsException<ConstraintConfigurationException>(() =>
			{
				StepConstraint c = new StepConstraint(ParameterDataType.Int32);
				c.SetParametersInternal(new string[] { "narf" }, ParameterDataType.Int32);
			});
		}
		public void SetParameters_Success()
		{
			StepConstraint c = new StepConstraint(ParameterDataType.Int32);
			c.SetParametersInternal(new string[] { "2" }, ParameterDataType.Int32);
			Assert.AreEqual(2, c.StepSize);
		}