created task

This commit is contained in:
poneciak
2023-04-05 08:18:51 +02:00
parent 01fa21f160
commit 27b7579566
2 changed files with 50 additions and 0 deletions

View File

@@ -807,6 +807,16 @@ You can call a function right where you're passing arguments to `assert!` -- so
something like `assert!(having_fun())`. If you want to check that you indeed get false, you
can negate the result of what you're doing using `!`, like `assert!(!having_fun())`."""
[[exercises]]
name = "tests4"
path = "exercises/tests/tests4.rs"
mode = "test"
hint = """
We expect method `Rectangle::new()` to panic for negative values.
To handle that you need to add special attribute to test function.
You can refer to the docs: https://doc.rust-lang.org/stable/book/ch11-01-writing-tests.html"""
# STANDARD LIBRARY TYPES
[[exercises]]