以下に示すように、コードを使用して gtest を実行しています。テスト出力をコンソールに表示するのではなく、テキスト ファイルに出力したいと考えています。これを行う方法はありますか?
cmake
コンソールからを使用してテストを実行しますcmake CMakeLists.txt && make && ./runTests
。
#include "cw-test.c"
#include <stdio.h>
#include <gtest/gtest.h>
TEST(InputValidationTest, ValidateEntryLine)
{
...
}
...
int main(int argc, char **argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}