gtestの現在のバージョンではそれをきれいに行う方法はありません。コードを確認したところ、テストに失敗した場合にのみテキスト出力(gtest "Messages"でラップ)が表示されます。
ただし、ある時点で、gtestがprintf
画面に表示され始め、それより上のレベルを利用して、プラットフォームに依存しない色を取得できます。
これがあなたがやりたいことをするためのハッキングされたマクロです。これは、gtestの内部テキストの色付けを使用します。もちろん、internal::
名前空間は警告ベルを鳴らしているはずですが、ねえ、それは機能します。
使用法:
TEST(pa_acq,Foo)
{
PRINTF("Hello world \n");
TEST_COUT << "Hello world" << std::endl;
}
出力:
コード:
namespace testing
{
namespace internal
{
enum GTestColor {
COLOR_DEFAULT,
COLOR_RED,
COLOR_GREEN,
COLOR_YELLOW
};
extern void ColoredPrintf(GTestColor color, const char* fmt, ...);
}
}
#define PRINTF(...) do { testing::internal::ColoredPrintf(testing::internal::COLOR_GREEN, "[ ] "); testing::internal::ColoredPrintf(testing::internal::COLOR_YELLOW, __VA_ARGS__); } while(0)
class TestCout : public std::stringstream
{
public:
~TestCout()
{
PRINTF("%s",str().c_str());
}
};
#define TEST_COUT TestCout()