Gitiles
Code Review
Sign In
git.eclipse.org
/
basyx
/
basyx
/
90ac03feed8564ae7004433477e32ce638287a8c
/
.
/
sdks
/
c++
/
basys.sdk.cc
/
tests
/
support
/
macros.h
blob: 64e9afc5042630ddf2baabc0d30365a6ddf71e70 [
file
] [
log
] [
blame
]
#ifndef
_TESTS_SUPPORT_MACROS_H
#define
_TESTS_SUPPORT_MACROS_H
#define
ASSERT_ANY_EQ
(
a
,
t
)
ASSERT_TRUE
(
a
.
template
InstanceOf
<
decltype
(
t
)>());
ASSERT_EQ
(
t
,
a
.
template
Get
<
decltype
(
t
)&>());
#endif
/* _TESTS_SUPPORT_MACROS_H */