Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.