From 31ee7e2bf9b1aa8fd2911284f24955a09387ef6a Mon Sep 17 00:00:00 2001 From: Timothy Lyanguzov Date: Sat, 17 Sep 2016 19:45:28 +1200 Subject: [PATCH] Updated URL for Google Test --- 02-Use_the_Tools_Available.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-Use_the_Tools_Available.md b/02-Use_the_Tools_Available.md index 8b02db9..e58a49c 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -227,7 +227,7 @@ If it is determined by team consensus that the compiler or analyzer is warning o CMake, mentioned above, has a built in framework for executing tests. Make sure whatever build system you use has a way to execute tests built in. -To further aid in executing tests, consider a library such as [Google Test](https://code.google.com/p/googletest/), [Catch](https://github.com/philsquared/Catch) or [Boost.Test](http://www.boost.org/doc/libs/release/libs/test/) to help you organize the tests. +To further aid in executing tests, consider a library such as [Google Test](https://github.com/google/googletest), [Catch](https://github.com/philsquared/Catch) or [Boost.Test](http://www.boost.org/doc/libs/release/libs/test/) to help you organize the tests. ### Unit Tests