Comment on Ask HN: Is there a programming language with embedded testing support?Comments−piinbinary10yI'm not sure this is exactly what you are asking about, but Rust does support testing right in the language. You can add #[test] before a function to make it a test function (tests and regular functions can live together in the same file).https://doc.rust-lang.org/book/testing.html
Comments
I'm not sure this is exactly what you are asking about, but Rust does support testing right in the language. You can add #[test] before a function to make it a test function (tests and regular functions can live together in the same file).
https://doc.rust-lang.org/book/testing.html