LS33.2 - C - Unit Testing Introduction with Google Test

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Can you tell how you set-up your gtest and what's the makefile you have written?

TapanKumar-vole
Автор

Would have been much more helpful if you had gone through how to construct the CMake, Makefile and the compiling strategy, eg.
- compile against libs (static & dynamic options) or
- encorporate the gtest source into the application under test...
Both require different cmake, makefile setups.

EngineeringVignettes
Автор

sweet and to the point on how to use c with google test framework, amazing. I only have one issue you called it "care" instead of "char" let the flame war begin!!! Really though great explanation!

dannyhunn
Автор

could you please give the previous lesson's link? kind of lost in your you tube channel video play lists and was not able to figure out where are previous or next videos.

nusratjemy
Автор

Very nice and informative video. Thanks!!! I wanted to ask what kind of editor are you using? I know at some point you said 'vim'. But what's that opening tab on left side, by "CTRL+O"?? Is it TMUX? how to do it any link to set it up? Thanks again.

funfactory
Автор

thank you very much, better video about unit testing on C

tomatte
Автор

One minor observation: in line number 9 of copy.cpp, should not the dst be allocated size(src) + 1 bytes? Otherwise while writing a null terminated string, the next byte on the stack would be overwritten leading to stack corruption!
>> char dst[sizeof(src) + 1];

sasone
Автор

please can u help me to solve EXPECT_EQ not declared error

Jayasree_kitchen