Regression |
public RegressionTestPlanBuilder SetCustomTestCoolingBaseTemperatures( params double[] coolingBaseTemperatures )
Exception | Condition |
---|---|
ArgumentException | If coolingBaseTemperatures contains more than 120 temperatures, or contains any value that can't be converted into a Temperature using Celsius(Double) or Fahrenheit(Double) (according to the temperature unit this Builder was constructed with). |
By default this is not set at all (as if it had been called with null), and the API will choose the base temperatures of the CDD it tests automatically.
If this is called with no arguments, like builder.SetCustomTestCoolingBaseTemperatures(), then no CDD will be tested unless SetRequestedRegressionSpecs(RegressionSpec) is used to specify regressions with CDD.
This method will accept up to 120 (inclusive) custom test cooling base temperatures, but, if you use all 120, you will get an exception on Build unless you have set the custom test heating base temperatures as empty. At Build time you can have up to 120 custom base temperatures in total. If you don't set any custom test heating base temperatures (leaving the API to choose the test heating base temperatures automatically), at Build time you will be allowed up to 60 custom test cooling base temperatures.
When calling this method remember that the values passed in are converted to Temperature items, which means they are rounded to the nearest 0.1 degrees and have maximum and minimum allowed values that depend on the temperature unit this Builder was constructed with. See Celsius(Double) or Fahrenheit(Double) for more.
See www.degreedays.net/api/regression#custom-base-temperatures for example code.