You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we also need to define them that way more as we are also looking at multiple languages.
if we aren't looking at classes etc. we should stick with low key tests so most python ones are out (at least directly though pytests instrospection would be great)
assert( calcBoilerStatus(19, 22, 18, "OFF") == "ON", 'Boiler should turn ON when too cold.', "logic");
maybe
gcsetest({
"func":"calcBoilerStatus",
"testing":"logic",
"input_type":"valid",
"inputs":[19, 22, 18, "OFF"],
"expected":"ON",
"message":'Boiler should turn ON when too cold.',
"task":1
})
Then we can display in a GCSE test table type way.
The text was updated successfully, but these errors were encountered: