summaryrefslogtreecommitdiff
path: root/docs/unit_testing.md
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-01-30 11:01:46 +0000
committerQMK Bot <hello@qmk.fm>2021-01-30 11:01:46 +0000
commita0e733391532490a216da044efb40451f67774f2 (patch)
tree8cc6bd43d0b70283b90cfadee1f512ef1161ff4c /docs/unit_testing.md
parent6b9a7e21e953d68d6ae093c2d727f1f3ac2798c0 (diff)
parent92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/unit_testing.md')
-rw-r--r--docs/unit_testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/unit_testing.md b/docs/unit_testing.md
index a63ffff5d3..82073a2016 100644
--- a/docs/unit_testing.md
+++ b/docs/unit_testing.md
@@ -7,7 +7,7 @@ Instead I recommend these two books, explaining two different styles of Unit Tes
* "Test Driven Development: By Example: Kent Beck"
* "Growing Object-Oriented Software, Guided By Tests: Steve Freeman, Nat Pryce"
-If you prefer videos there are Uncle Bob's [Clean Coders Videos](https://cleancoders.com/), which unfortunately cost quite a bit, especially if you want to watch many of them. But James Shore has a free [Let's Play](http://www.jamesshore.com/Blog/Lets-Play) video series.
+If you prefer videos there are Uncle Bob's [Clean Coders Videos](https://cleancoders.com/), which unfortunately cost quite a bit, especially if you want to watch many of them. But James Shore has a free [Let's Play](https://www.jamesshore.com/Blog/Lets-Play) video series.
## Google Test and Google Mock
It's possible to Unit Test your code using [Google Test](https://github.com/google/googletest). The Google Test framework also includes another component for writing testing mocks and stubs, called "Google Mock". For information how to write the actual tests, please refer to the documentation on that site.