Euphoria
utils.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "catch2/catch_all.hpp"
4 
5 // ASSERT_THAT
6 #define CATCH_IS_VECTOR(TYPE, ...) \
7  Catch::Matchers::Equals(std::vector<TYPE> {__VA_ARGS__})
8 
9 #define GENERATE_AS(T, ...) GENERATE(Catch::Generators::as<T> {}, __VA_ARGS__)
10