diff options
| author | poneciak <poneciak@gmail.com> | 2023-04-05 08:18:51 +0200 |
|---|---|---|
| committer | poneciak <poneciak@gmail.com> | 2023-04-05 08:18:51 +0200 |
| commit | 27b75795666cddd3725c323cbc0b68b206fc150e (patch) | |
| tree | 725fa34a81bdfc913d43ea81364f75d9fde10671 /info.toml | |
| parent | 01fa21f160fdc32aca6396506f3774189feee0f3 (diff) | |
created task
Diffstat (limited to 'info.toml')
| -rw-r--r-- | info.toml | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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]] |
