-
Ensure 100% success in the each test class
-
Create a class
WuTangConcatenatorwhich uses a compositeIntegerto identify divisibility.- Multiples of
3are consideredWunumbers. - Multiples of
5are consideredTangnumbers. - Multiples of
3and5are consideredWuTangnumbers.
- Multiples of
-
Create a class
BasicUtilitieswhich evaluates integers with relational operators.isGreaterThan5should returntrueif the input is more than5, else false.isLessThan7should returntrueif the input is less than7, else false.IsBetween5And7should returntrueif the input is less than7and more than 5, else false.
-
Create a class
IntegerArrayUtilitieshasEvenLengthshould returntrueif the input array has an even length.rangeshould return an array of integers fromstarttostopinclusively.