https://github.com/nizos/aoc2022-rust
Advent of code 2022 in rust
https://github.com/nizos/aoc2022-rust
Last synced: 25 days 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-14T18:18:48.000Z (almost 2 years ago)
- Last Synced: 2025-02-16T19:17:15.078Z (5 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.