mirror of
https://github.com/holub/mame
synced 2025-05-23 22:20:01 +03:00
17 lines
343 B
C
17 lines
343 B
C
/*
|
|
* Copyright 2010-2017 Branimir Karadzic. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
|
|
*/
|
|
|
|
#ifndef __TEST_H__
|
|
#define __TEST_H__
|
|
|
|
#include <bx/bx.h>
|
|
#include <catch/catch.hpp>
|
|
#define TEST(_x) TEST_CASE(#_x, "")
|
|
#define CHECK_EQUAL(_x, _y) REQUIRE(_x == _y)
|
|
|
|
#include "dbg.h"
|
|
|
|
#endif // __TEST_H__
|