Test Driven Development - TDD - GoogleTest Introduction with CMake LINUX - C++ - GMOCK

Поделиться
HTML-код
  • Опубликовано: 24 окт 2024

Комментарии • 8

  • @meninoesperto2773
    @meninoesperto2773 Год назад +2

    Man you have the best tutorials

  • @eq716
    @eq716 Год назад +1

    Thank you so much for the such detailed explanation

  • @maximelebreux2914
    @maximelebreux2914 8 месяцев назад +2

    Great tutorial!!

  • @manojrock5216
    @manojrock5216 Год назад +3

    thank you so much for this video♥

  • @jrohit1110
    @jrohit1110 Год назад

    Thanks for the tutorial, I think you forgot to add
    {delete ex;}
    in the destructor of the testFixture Class, as the ex is created with
    {ex = new example(); }
    in the constructor.

    • @ulasdikme7307
      @ulasdikme7307  Год назад

      Yes you are right. I did not care much, my intention was to explain unit test concept. Actually, instead of new it is a good idea to use smart pointers. :) Thanks for watching.

  • @josephafa
    @josephafa Год назад +1

    Thanks for the awesome tutorial on a really complicated subject of mocking! The google documentation doesn't explain well at all. You defiantly made up for it.

  • @mohamedhussien4013
    @mohamedhussien4013 10 месяцев назад

    Thank u so much.
    But from my experience, it's not a tutorial for beginners (You need to know some basics).