Day 39 of learning Rust as a C# dev:
Writing tests in Rust is simple, fast, and built right in.
No frameworks, no fluff, just #[test] and cargo test.

Here’s how it compares to .NET:
https://woodruff.dev/writing-tests-in-rust-familiar-and-fast/

#RustLang #CSharp #DotNet #LearnRust #RustForCSharpDevs

Writing Tests in Rust: Familiar and Fast - Chris Woody Woodruff

Onward to Day 39. Today, we're discussing testing in Rust. If you are a C# developer, you have probably spent time with xUnit, NUnit, or MSTest. You know the usual [TestMethod] or [Fact] attributes and Assert.Equal calls. Rust’s testing system is going to feel pretty familiar with a bit of Rust flair.

Chris Woody Woodruff