Skip to content

Commit e299bf4

Browse files
committed
updated readme.md
1 parent f118c2e commit e299bf4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Of course this example is very simple but it gives a general idea of how the par
7878
7979
#### More info
8080
81-
Here is a link to the wikipedia article for more depth on unit testing practice and history: [https://en.wikipedia.org/wiki/Unit_testing](Wikipedia: Unit Testing).
81+
Here is a link to the wikipedia article for more depth on unit testing practice and history: [Unit_testing](https://en.wikipedia.org/wiki/Unit_testing).
8282
8383
### Frameworks
8484
To make Unit Testing easier to automate, unit testing frameworks have been written to help test results from function calls, gather statistics about passing/failing test cases, and
@@ -98,7 +98,7 @@ Unit testing frameworks are available in most languages and many have names like
9898
We'll be using Google Test (called gtest) here so first we need to install it.
9999
100100
Here is the link to the project source
101-
[https://github.com/google/googletest](https://github.com/google/googletest)
101+
[Google Test](https://github.com/google/googletest)
102102
103103
On Ubuntu Linux you can install gtest using this command. If you are developing on another sytem refer to the documentation link for install procedures. Other than installing, all of the commands and test procedures we'll be using later will be the same (whether Windows / MacOS / POSIX / Linux).
104104
@@ -125,7 +125,7 @@ sudo ln -s /usr/lib/libgtest_main.a /usr/local/lib/gtest/libgtest_main.a
125125
```
126126

127127
You can read more about the Google Test project here:
128-
[https://github.com/google/googletest/blob/master/googletest/docs/Primer.md](https://github.com/google/googletest/blob/master/googletest/docs/Primer.md)
128+
[Test Primer.md](https://github.com/google/googletest/blob/master/googletest/docs/Primer.md)
129129

130130

131131
===========================

0 commit comments

Comments
 (0)