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
create assertMatches(String, String) or similar which could be used in the tests for testing whether printed text matches expectations but let's some typos etc. thru.
Maybe we could have some kind of level of strictness.
There are plenty of fuzzy match algos so it should be rather easy to implement.
The text was updated successfully, but these errors were encountered:
Like when we ask for students to print: type a number: and the student prints type number -- now the tests keeps on focusing to whine about the incorrectly typed in text, when we rarely need to whine about typos.
This would be useful especially with computer exam situations, where we in general want to be more generous about typos etc.
Ok, that case makes sense (though I suppose you could alternatively ignore the text of the prompt, or work to improve the error messages). Will have to be careful about not making the implementation too permissive.
create
assertMatches(String, String)
or similar which could be used in the tests for testing whether printed text matches expectations but let's some typos etc. thru.Maybe we could have some kind of level of strictness.
There are plenty of fuzzy match algos so it should be rather easy to implement.
The text was updated successfully, but these errors were encountered: