aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorsthd <sch@campus.technion.ac.il>2023-08-22 20:58:34 +0300
committersthd <sch@campus.technion.ac.il>2023-08-22 20:58:34 +0300
commitf0eae4b3995b77cfbb49cc91f98da5d1f3c4fe05 (patch)
tree34da2ebdcddfdfda79846575680854d9f19adad7 /docs
parentcb5cd96bcafc15eaaf73517357b596e9ca1e71b4 (diff)
downloadgoogletest-f0eae4b3995b77cfbb49cc91f98da5d1f3c4fe05.zip
googletest-f0eae4b3995b77cfbb49cc91f98da5d1f3c4fe05.tar.gz
googletest-f0eae4b3995b77cfbb49cc91f98da5d1f3c4fe05.tar.bz2
changed http to https
Diffstat (limited to 'docs')
-rw-r--r--docs/gmock_for_dummies.md2
-rw-r--r--docs/primer.md8
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/gmock_for_dummies.md b/docs/gmock_for_dummies.md
index 06c8725..9f24dca 100644
--- a/docs/gmock_for_dummies.md
+++ b/docs/gmock_for_dummies.md
@@ -90,7 +90,7 @@ gMock is bundled with googletest.
## A Case for Mock Turtles
Let's look at an example. Suppose you are developing a graphics program that
-relies on a [LOGO](http://en.wikipedia.org/wiki/Logo_programming_language)-like
+relies on a [LOGO](https://en.wikipedia.org/wiki/Logo_programming_language)-like
API for drawing. How would you test that it does the right thing? Well, you can
run it and compare the screen with a golden screen snapshot, but let's admit it:
tests like this are expensive to run and fragile (What if you just upgraded to a
diff --git a/docs/primer.md b/docs/primer.md
index f2a97a7..4901e1a 100644
--- a/docs/primer.md
+++ b/docs/primer.md
@@ -50,7 +50,7 @@ terms *Test*, *Test Case* and *Test Suite*, so beware of misunderstanding these.
Historically, GoogleTest started to use the term *Test Case* for grouping
related tests, whereas current publications, including International Software
-Testing Qualifications Board ([ISTQB](http://www.istqb.org/)) materials and
+Testing Qualifications Board ([ISTQB](https://www.istqb.org/)) materials and
various textbooks on software quality, use the term
*[Test Suite][istqb test suite]* for this.
@@ -68,13 +68,13 @@ deprecated and refactored away.
So please be aware of the different definitions of the terms:
-Meaning | GoogleTest Term | [ISTQB](http://www.istqb.org/) Term
+Meaning | GoogleTest Term | [ISTQB](https://www.istqb.org/) Term
:----------------------------------------------------------------------------------- | :---------------------- | :----------------------------------
Exercise a particular program path with specific input values and verify the results | [TEST()](#simple-tests) | [Test Case][istqb test case]
-[istqb test case]: http://glossary.istqb.org/en/search/test%20case
-[istqb test suite]: http://glossary.istqb.org/en/search/test%20suite
+[istqb test case]: https://glossary.istqb.org/en/search/test%20case
+[istqb test suite]: https://glossary.istqb.org/en/search/test%20suite
## Basic Concepts