Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nizos/aoc2022-rust
Advent of code 2022 in rust
https://github.com/nizos/aoc2022-rust
Last synced: 1 day ago
JSON representation
Advent of code 2022 in rust
- Host: GitHub
- URL: https://github.com/nizos/aoc2022-rust
- Owner: nizos
- Created: 2023-07-14T18:18:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-14T18:18:48.000Z (over 1 year ago)
- Last Synced: 2024-11-06T10:25:20.284Z (about 2 months ago)
- Language: Rust
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust TDD Starter
Simple starter for getting started with TDD in Rust.The file _src/calculator.rs_ contains one test case and a few in comments. Start by coming
up with a few test cases and add them to the lists, then implement them one at a time, test-driving the
solution forwards.## Libraries
- _rstest_ for parametrizing tests## Running
Tests are run by Cargo. Execute:```shell
$ cargo test
```to run all the tests.