Behaviour-driven development syntactic sugar to make tests more readable in rust lang
inside Cargo.toml
add
toml
[dev-dependencies]
bdd-sugar = "0.1.0"
```rust use bdd_sugar::{given, when, then};
fn forgetpasswordhappypathtest() { // test code } ```