├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── catch2 ├── catch_amalgamated.cpp └── catch_amalgamated.hpp ├── include └── tortellini.hh ├── logo.png └── test.cc /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/tortellini/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: qix- 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/tortellini/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /.cache/ 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/tortellini/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/tortellini/HEAD/README.md -------------------------------------------------------------------------------- /catch2/catch_amalgamated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/tortellini/HEAD/catch2/catch_amalgamated.cpp -------------------------------------------------------------------------------- /catch2/catch_amalgamated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/tortellini/HEAD/catch2/catch_amalgamated.hpp -------------------------------------------------------------------------------- /include/tortellini.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/tortellini/HEAD/include/tortellini.hh -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/tortellini/HEAD/logo.png -------------------------------------------------------------------------------- /test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qix-/tortellini/HEAD/test.cc --------------------------------------------------------------------------------