blob: c0deef1ad7948abd1c8dadc3758c2b6a4ba3587f (
plain)
1
2
3
4
5
6
7
|
#pragma once
#define WARNING(...) \
ColoredPrintf(testing::internal::GTestColor::kYellow, "[ WARNING ] "), \
ColoredPrintf(testing::internal::GTestColor::kYellow, __VA_ARGS__), \
printf("\n")
|