description: Test plan for auxilaryArrayParsing.js -------------------------------------------------------------------------------- testName: parseColorRangeInputs_validDataString input inputData: string ('1') input inputMetaData: string ('10') output: array (The minimum and maximum values returned in an array) testName: parseColorRangeInputs_validDataMixedUse1 input inputData: integer (1) input inputMetaData: string ('10') output: ? testName: parseColorRangeInputs_validDataMixedUse2 input inputData: string ('1') input inputMetaData: integer (10) output: ? testName: parseColorRangeInputs_validDataInteger input inputData: integer (1) input inputMetaData: integer (10) output: ? testName: parseColorRangeInputs_inValidInputDataUndefined1 input inputData: undefined input inputMetaData: integer (10) output: ? testName: parseColorRangeInputs_inValidInputDataUndefined2 input inputData: undefined input inputMetaData: string ('10') output: ? testName: cparseColorRangeInputs_inValidInputDataNaN1 input inputData: NaN input inputMetaData: integer (10) output: ? testName: cparseColorRangeInputs_inValidInputDataNaN2 input inputData: NaN input inputMetaData: string ('10') output: ? testName: parseColorRangeInputs_inValidInputDataUndefined1 input inputData: integer (1) input inputMetaData: undefined output: ? testName: parseColorRangeInputs_inValidInputDataUndefined2 input inputData: string ('1') input inputMetaData: undefined output: ? testName: cparseColorRangeInputs_inValidInputDataNaN1 input inputData: integer (1) input inputMetaData: NaN output: ? testName: cparseColorRangeInputs_inValidInputDataNaN2 input inputData: string ('1') input inputMetaData: NaN output: ? -------------------------------------------------------------------------------- testName: doesArrayContainValue_validDataString input inputData: array,string|integer|boolean|float|object> input inputMetaData: function (the function that should be used to do the search) output: boolean (True or False to indicate if the value was found in the array or not found) testName: doesArrayContainValue_validDataInputDataString input inputData: string (dfxg24346dfg) input inputMetaData: function (the function that should be used to do the search) (testDataString) output: ? testName: doesArrayContainValue_validDataInputDataInteger input inputData: integer (23456) input inputMetaData: function (the function that should be used to do the search) (testDataInteger) output: ? testName: doesArrayContainValue_validDataInputDataBoolean input inputData: boolean (false) input inputMetaData: function (the function that should be used to do the search) (testDataBoolean) output: ? testName: doesArrayContainValue_validDataInputDataObject input inputData: object ({"constants":"c,const","Generator":"g,gen,genrtr","List":"l,lst"}) input inputMetaData: function (the function that should be used to do the search) (testDataObject) output: ? testName: doesArrayContainValue_validDataInputMetaDataFunction input inputData: array,string|integer|boolean|float|object> (testDataFunction) input inputMetaData: function ([C:\haystacks\test\unitTest\testData\functionTest.js - doesArrayContainValueTestFunction]) output: ? NOTE: Test case already covered, not need to implement. testName: doesArrayContainValue_inValidInputDataUndefined input inputData: undefined input inputMetaData: array,string|integer|boolean|float|object> (inValidDataToStoreUndefined) output: ? testName: doesArrayContainValue_inValidInputDataNaN input inputData: NaN input inputMetaData: array,string|integer|boolean|float|object> (inValidDataToStoreNaN) output: ? testName: doesArrayContainValue_inValidDataStorageInputMetaDataInteger input inputData: array ([1,2,3,4,5]) input inputMetaData: integer (4567) output: ? testName: doesArrayContainValue_inValidDataStorageInputMetaDataBoolean input inputData: array ([1,2,3,4,5]) input inputMetaData: boolean (false) output: ?