exercism / cpp

Exercism exercises in C++.
https://exercism.org/tracks/cpp
MIT License
257 stars 211 forks source link

Check if every exercise is compatible with Catch2 v3 #704

Closed vaeng closed 1 year ago

vaeng commented 1 year ago

Check every single exercise test run in the docker image:

Practice:

Concept

vaeng commented 1 year ago

Circular-buffer test file has a borked header:

Should be:

#include "circular_buffer.h"
#ifdef EXERCISM_TEST_SUITE
#include <catch2/catch.hpp>
#else
#include "test/catch.hpp"
#endif

Is:

#include "test/catch.hpp"
#include "circular_buffer.h"