Hacker News
- Writing an OS in Rust: Testing https://os.phil-opp.com/testing/ 9 comments
- “Land initial Rust MP4 parser and unit tests” https://bugzilla.mozilla.org/show_bug.cgi?id=1175322 86 comments
- Smoke-testing Rust HTTP clients https://medium.com/@shnatsel/smoke-testing-rust-http-clients-b8f2ee5db4e6 53 comments programming
- Unit-testing a Rust console app (a text editor) https://jmmv.dev/2020/12/unit-testing-a-console-app.html 4 comments rust
- Rust to C compiler - 95.9% test pass rate, odd platforms https://fractalfir.github.io/generated_html/cg_clr_odd_platforms.html 9 comments programming
- Assertables v6: Rust crate of assert macros for better testing; see highlights for what's new. http://github.com/sixarm/assertables-rust-crate 2 comments rust
- 1.61.0 pre-release testing | Inside Rust Blog https://blog.rust-lang.org/inside-rust/2022/05/16/1.61.0-prerelease.html 8 comments rust
- Rust 1.59.0 pre-release testing https://blog.rust-lang.org/inside-rust/2022/02/22/1.59.0-prerelease.html 45 comments rust
- Skipping Tests in Rust https://plume.benboeckel.net/~/justanotherblog/skipping-tests-in-rust 7 comments rust
- Testing Errors in Rust https://www.reddit.com/r/rust/comments/kx4c6z/testing_errors_in_rust/ 3 comments rust
- Librsvg's test suite is now in Rust https://people.gnome.org/~federico/blog/librsvg-test-suite-is-now-in-rust.html 5 comments linux
- Crux: Symbolic Testing for C, C++, and Rust https://crux.galois.com/ 6 comments cpp
- Using the Rust compiler as your integration testing framework https://blog.logrocket.com/using-the-rust-compiler-as-your-integration-testing-framework/ 6 comments rust
- How to organize your Rust tests https://blog.logrocket.com/how-to-organize-your-rust-tests/ 6 comments rust
- A Locust-inspired Load Testing Tool In Rust https://www.tag1consulting.com/blog/goose-locust-inspired-load-testing-tool-rust 7 comments rust
- Annoucing Ferris' Mean Bean CI Machine: Build and Test Your Rust Projects With Zero Configuration https://github.com/xampprocky/mean-bean-ci-template 4 comments rust
- Rust HTTP Testing with Mockito https://zupzup.org/rust-http-testing/ 4 comments rust
- Rust 1.38.0 pre-release testing https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1380-2019-09-26 29 comments rust
- Rust 1.37.0 pre-release testing https://www.reddit.com/r/rust/comments/cprt0z/rust_1370_prerelease_testing/ 31 comments rust
- Rust 1.35.0 pre-release testing https://www.reddit.com/r/rust/comments/br7ux9/rust_1350_prerelease_testing/ 41 comments rust
- Writing an OS in Rust: Testing https://os.phil-opp.com/testing/ 19 comments rust
- New release of insta and cargo-insta 0.5.0 (Snapshot testing library for Rust) https://crates.io/crates/insta 11 comments rust
- Help test Rust 2018 https://blog.rust-lang.org/2018/10/30/help-test-rust-2018.html 3 comments programming
- Rust 1.30.0 pre-release testing https://github.com/rust-lang/rust/blob/stable/RELEASES.md 37 comments rust
- Rust 2018 RC1 is available - please help test! https://internals.rust-lang.org/t/rust-2018-rc1-is-available/8435 30 comments rust
- Unit Testing | Writing an OS in Rust https://os.phil-opp.com/unit-testing/ 8 comments rust
- loggy: An opinionated library for developing and testing rust applications that use logging. https://github.com/orenbenkiki/loggy 8 comments rust
- Parsing JSON is a Minefield (two Rust libraries tested in here) http://seriot.ch/parsing_json.php 32 comments rust
- Rust Mutation Testing https://llogiq.github.io/2016/03/24/mutest.html 6 comments programming
- Blog: Rust Mutation Testing (WIP) https://llogiq.github.io/2016/03/24/mutest.html 19 comments rust
- Rust Testing With Stainless http://bettong.net/2016/03/09/rust-testing-with-stainless/ 6 comments rust
- Using Docker to Test Rust on Linux http://hermanradtke.com/2015/08/23/using-docker-to-test-rust-on-linux.html 3 comments rust
- Develop, test, run, and deploy Rust as a scripted language https://bitbucket.org/joshmorin/cargo-darf 9 comments rust
- Anyone doing functional tests for CLI apps in Rust? https://github.com/google/vroom 5 comments rust
- "Land initial Rust MP4 parser and unit tests” in Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1175322 3 comments programming
- "Add a LALR grammar for Rust with testing support" https://github.com/rust-lang/rust/pull/21452 10 comments rust
- How to Test Rust on Travis CI http://bettong.net/2014/05/09/how-to-test-rust-on-travis-ci/ 9 comments rust
- Rust test cases through the ages http://brson.github.io/archaea/ 5 comments rust
- Zero To Production In Rust, Part 7.1 - Skeleton And Principles For A Maintainable Test Suite https://www.lpalmieri.com/posts/skeleton-and-principles-for-a-maintainable-test-suite/ 14 comments rust
- Write tests directly in your production code instead of in separate source files and binaries! Other languages such as Rust, D and Python provide that ability and is common practice. doctest makes that possible in C++! https://github.com/onqtam/doctest/issues/252 42 comments cpp