Kotlinlearncs.online LogoJava
Return to List

Test Writing: Make Bricks

Imported By: Geoffrey Challen
/ Version: 2021.7.0

We want to make a row of bricks that is goal inches long. We have a number of small bricks (1 inch each) and big bricks (5 inches each). Return true if it is possible to make the goal by choosing from the given bricks. This is a little harder than it looks! Complete the problem without using any loops.

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 Kotlin's assert or check methods
fun makeBricks(
small: Int,
big: Int,
goal: Int,
): Boolean {
return false // You may need to remove this starter code
}