03: Unit Tests
Submit this homework using Gradescope. You can type up your answers, or write legibly and scan them. Do not attempt to submit a paper copy in class, as it will not be accepted.
Write a single concise, correct, and well-formed test method for each of the following requirements. Remember the decorator (@Test), and use the appropriate assertion (which should be one of assertEquals, assertTrue, or assertFalse). (1 point each)
- Test the
toLowerCasemethod ofStringon the string"ASDF". - Test the
isLetterOrDigitmethod ofCharacteron each of the characters'A','&', and'2'. (Use three assertions, all in one method.) - Test the
maxmethod ofMathon twointarguments of your choice. - Test the
minmethod ofMathon the same arguments you used in the previous test.