Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
gtest_color_test_.cc File Reference
#include <stdio.h>
#include "gtest/gtest.h"
#include "src/gtest-internal-inl.h"
Include dependency graph for gtest_color_test_.cc:

Go to the source code of this file.

Functions

 TEST (GTestColorTest, Dummy)
 
int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 50 of file gtest_color_test_.cc.

50 {
52
53 if (ShouldUseColor(true)) {
54 // Google Test decides to use colors in the output (assuming it
55 // goes to a TTY).
56 printf("YES\n");
57 return 1;
58 } else {
59 // Google Test decides not to use colors in the output.
60 printf("NO\n");
61 return 0;
62 }
63}
char ** argv
LOGGING_API void printf(Category category, const char *format,...)
Definition Logging.cpp:30
GTEST_API_ void InitGoogleTest(int *argc, char **argv)
Definition gtest.cc:5787
Here is the call graph for this function:

◆ TEST()

TEST ( GTestColorTest ,
Dummy  )

Definition at line 47 of file gtest_color_test_.cc.

47 {
48}