From a54fe0d1ba257ee8a5bfc5ade47be0755a244acf Mon Sep 17 00:00:00 2001 From: Mikhail Ostashchenko Date: Tue, 12 Sep 2023 17:33:51 +0200 Subject: [PATCH] Fix broken links (#4421) --- src/data/roadmaps/cpp/content/frameworks/100-gtest.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/cpp/content/frameworks/100-gtest.md b/src/data/roadmaps/cpp/content/frameworks/100-gtest.md index 6430c4f6e..ceb766e8f 100644 --- a/src/data/roadmaps/cpp/content/frameworks/100-gtest.md +++ b/src/data/roadmaps/cpp/content/frameworks/100-gtest.md @@ -7,7 +7,7 @@ Google Test, also known as gtest or googletest, is a C++ testing framework devel To use Google Test in your project, follow these steps: - Download the source code from the [GoogleTest GitHub repository](https://github.com/google/googletest). -- Build and install Google Test on your system. Instructions for various platforms can be found in the [README](https://github.com/google/googletest/blob/master/googletest/README.md) file. +- Build and install Google Test on your system. Instructions for various platforms can be found in the [README](https://github.com/google/googletest/blob/main/googletest/README.md) file. - Include the necessary headers and link against the Google Test library in your project. ## Writing a Test with Google Test @@ -72,4 +72,4 @@ Google Test offers a wide range of features to make testing easier, such as: - **Death Tests**: Google Test allows you to write tests that verify if your code terminates correctly or with the expected error message. -For more information about Google Test and its features, refer to the [official documentation](https://github.com/google/googletest/blob/master/googletest/docs/primer.md). \ No newline at end of file +For more information about Google Test and its features, refer to the [official documentation](https://github.com/google/googletest/blob/main/docs/primer.md).