diff --git a/STINK_student_records/Test_classes/Result/STINK_student_records_Test_Result.php b/STINK_student_records/Test_classes/Result/STINK_student_records_Test_Result.php index 3e3e16d..454147f 100644 --- a/STINK_student_records/Test_classes/Result/STINK_student_records_Test_Result.php +++ b/STINK_student_records/Test_classes/Result/STINK_student_records_Test_Result.php @@ -34,11 +34,13 @@ 'max_length' => 4, 'decimals' => 1, 'underflow' => -1, + 'legal_values' => array( 0 ), 'nullable' => false, 'test_value' => "15", ), 'WEIGHTED_MARK' => array( 'generic_type' => 'NUMBER', 'sql_type' => array( 'NUMBER', 'FLOAT' ), 'underflow' => -1, + 'legal_values' => array( 0 ), 'nullable' => false, 'test_value' => "23.4625", ), 'PERCENTAGE_MARK' => array( 'generic_type' => 'NUMBER', @@ -48,6 +50,7 @@ 'decimals' => 2, 'underflow' => -1, 'overflow' => 101, + 'legal_values' => array( 0, 100 ), 'nullable' => false, 'test_value' => "63", ), ); }