TDD. , , , , . , c api, , . , , . , .
, , . ++ ++ ( ). :
class ICommandLineOutput
{
public:
virtual void WriteLine(std::string&) = 0;
};
, , , WriteTime. , , ICommandLineOutput . , , . , , ICommandLineOutput.
class WriteTime
{
public:
explicit WriteTime(ICommandLineOutput commandLine): _commandLine(commandLine){}
...
};
, ++, , . Google Test, . , GUI, GUI ++, .
, , . TestWriteTime. GoogleMock ICommandLineOutput. / , , WriteTime, . , , WriteLine() .
, Linux- . . , Windows, . , TDD.