this post was submitted on 04 Aug 2023
2 points (100.0% liked)
Rust
5957 readers
13 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
There's no special magical way to mock things in Rust. What you're doing makes sense. Rust's (built-in) unit testing story is not very complex, you have 3 assertion macros and the
#[test]
attribute basically.What additional functionality are you hoping to get through an alternative means of initializing the cat?
Nothing I guess. I just was thinking there would be more to it than that.