summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Borzì <stefanoborzi32@gmail.com>2022-05-05 22:26:20 +0200
committerGitHub <noreply@github.com>2022-05-05 22:26:20 +0200
commitfcef098c92b66bbca4a793622e83691cfdee4da3 (patch)
treeca52c10f55affceba9e8b94e0d397b99c5014d14
parentb36eb27886cf1f13d521db8457b1153580c72f6c (diff)
downloadwiki-fcef098c92b66bbca4a793622e83691cfdee4da3.tar.gz
wiki-fcef098c92b66bbca4a793622e83691cfdee4da3.tar.bz2
wiki-fcef098c92b66bbca4a793622e83691cfdee4da3.zip
chore: update 404 links, closes #696
-rw-r--r--docs/unit-testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/unit-testing.md b/docs/unit-testing.md
index 6dbbab2..c599465 100644
--- a/docs/unit-testing.md
+++ b/docs/unit-testing.md
@@ -26,10 +26,10 @@ make install -j 6
We use [googletest](https://github.com/google/googletest) at AzerothCore as our testing framework. Some useful references that explain how it works are available at:
-- https://github.com/google/googletest/blob/master/googletest/docs/primer.md
+- http://google.github.io/googletest/primer.html
- https://github.com/google/googletest/blob/master/googlemock/README.md
- https://github.com/nordlow/gtest-tutorial
-- https://github.com/google/googletest/blob/master/googlemock/docs/for_dummies.md
+- https://google.github.io/googletest/gmock_for_dummies.html
You can find plenty of other references online that explain how to deal with googletest or unit testing in general.
If you know some other useful resources, feel free to edit this page and add them.