From 7fbd03933c9c0fd30a89fc11e37aaea352b39f32 Mon Sep 17 00:00:00 2001 From: Laurent Steff <laurent.steff@inria.fr> Date: Mon, 3 May 2021 11:09:58 +0200 Subject: [PATCH] updated google test doc --- 6-InRealEnvironment/6-Tools.ipynb | 5 +++-- b | 0 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 b diff --git a/6-InRealEnvironment/6-Tools.ipynb b/6-InRealEnvironment/6-Tools.ipynb index 3e0ef6b..18e05a1 100644 --- a/6-InRealEnvironment/6-Tools.ipynb +++ b/6-InRealEnvironment/6-Tools.ipynb @@ -83,7 +83,8 @@ "\n", "### Google test\n", "\n", - "This test utility is the only one we know that provide mocks; unfortunately I can't give you first-hand feedback.\n", + "[GoogleTest](https://google.github.io/googletest/) includes everything that is needed for testing: [xUnit](https://en.wikipedia.org/wiki/XUnit), test discovery, rich test assertions, death tests, XML test report generation, ... \n", + "It is also the only one we know that provide mocks. It is worth saying that mocking in C++ requires your application to be specially designed for it, more informations are available on the [gMock cookbook](https://google.github.io/googletest/gmock_cook_book.html)\n", "\n", "\n", "\n", @@ -187,4 +188,4 @@ }, "nbformat": 4, "nbformat_minor": 2 -} +} \ No newline at end of file diff --git a/b b/b new file mode 100644 index 0000000..e69de29 -- GitLab