Test Writing: Sleep In
Imported By: Geoffrey Challen
/ Version: 2021.2.0
The parameter weekday is true if it is a weekday, and the parameter vacation is true if we are on vacation.
We sleep in if it is not a weekday or we're on vacation.
Return true if we sleep in.
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 sleepIn(
weekday: Boolean,
vacation: Boolean,
): Boolean {
return false
}