mirror of
https://github.com/eosswedenorg/libantelope
synced 2026-06-16 03:34:56 +02:00
8 lines
No EOL
210 B
C
8 lines
No EOL
210 B
C
#ifndef LIBANTELOPE_TESTING_H
|
|
#define LIBANTELOPE_TESTING_H
|
|
|
|
#include <doctest.h>
|
|
|
|
#define CHECK_PRED(a,b,pred) if (pred) { CHECK_EQ((a), (b)); } else { CHECK_NE((a), (b)); }
|
|
|
|
#endif /* LIBANTELOPE_TESTING_H */ |