#1 Added Test 3 to boilerplate solution

This commit is contained in:
Luke Else 2024-07-05 13:00:32 +01:00
parent 489960db0c
commit 0ec4d01dcf

View File

@ -56,4 +56,21 @@ mod test {
assert_eq!(answer, "Ready"); assert_eq!(answer, "Ready");
} }
#[test]
fn test3() {
let solution = xx::XX {};
//Complete the Challenge
let answer = solution
.solution(
utils::get_input(solution.get_id(), utils::InputType::Test3)
.unwrap()
.as_mut(),
)
.unwrap()
.to_string();
assert_eq!(answer, "Ready");
}
} }