Skip to content

Commit 481a30b

Browse files
URL updated
1 parent 8916e06 commit 481a30b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/debugging-testing/testing/unit_testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ For the build system to build a unit test, pass the `ON` value to `BUILD_TESTING
9696
9797
A unit test suite consists of one or more test cases, which should cover all the functions in a class under test. Any external dependencies should be stubbed, including the other classes in the same module. Avoid stubbing header files. Finally, analyze code coverage to ensure all code is tested, and no dead code is found.
9898
99-
Please see the [documentation for Google Test](https://github.com/google/googletest/blob/master/docs/primer.md) to learn how to write unit tests using its framework. See the [documentation for Google Mock](https://github.com/google/googletest/tree/master/googlemock) if you want to write and use C++ mock classes instead of stubs.
99+
Please see the [documentation for Google Test](https://github.com/google/googletest/blob/main/docs/primer.md) to learn how to write unit tests using its framework. See the [documentation for Google Mock](https://github.com/google/googletest/tree/master/googlemock) if you want to write and use C++ mock classes instead of stubs.
100100
101101
#### Test suite configuration
102102

0 commit comments

Comments
 (0)