Kotlinlearncs.online LogoJava
Return to List

Test Writing: Array Count Greater Than 1D

Created By: Geoffrey Challen
/ Version: 2021.8.0

Write a method named arrayCountGreaterThan. It should accept an int array as its first argument and an int as its second, and return a count of how many values in the array are strictly greater than the second parameter. assert that the passed array is not null.

Test Design Challenge

You're challenge is to write tests for this problem described above.

  • Provide a method named test that accepts no arguments and does not return a value.
  • If the implementation of the class described above is incorrect, your test method should throw an exception.
  • If it is correct, do not throw an exception.
  • You may want to use Java's assert method