Skip to content

Commit f0eae4b

Browse files
author
sthd
committed
changed http to https
1 parent cb5cd96 commit f0eae4b

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

docs/gmock_for_dummies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ gMock is bundled with googletest.
9090
## A Case for Mock Turtles
9191

9292
Let's look at an example. Suppose you are developing a graphics program that
93-
relies on a [LOGO](http://en.wikipedia.org/wiki/Logo_programming_language)-like
93+
relies on a [LOGO](https://en.wikipedia.org/wiki/Logo_programming_language)-like
9494
API for drawing. How would you test that it does the right thing? Well, you can
9595
run it and compare the screen with a golden screen snapshot, but let's admit it:
9696
tests like this are expensive to run and fragile (What if you just upgraded to a

docs/primer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ terms *Test*, *Test Case* and *Test Suite*, so beware of misunderstanding these.
5050

5151
Historically, GoogleTest started to use the term *Test Case* for grouping
5252
related tests, whereas current publications, including International Software
53-
Testing Qualifications Board ([ISTQB](http://www.istqb.org/)) materials and
53+
Testing Qualifications Board ([ISTQB](https://www.istqb.org/)) materials and
5454
various textbooks on software quality, use the term
5555
*[Test Suite][istqb test suite]* for this.
5656

@@ -68,13 +68,13 @@ deprecated and refactored away.
6868
So please be aware of the different definitions of the terms:
6969

7070

71-
Meaning | GoogleTest Term | [ISTQB](http://www.istqb.org/) Term
71+
Meaning | GoogleTest Term | [ISTQB](https://www.istqb.org/) Term
7272
:----------------------------------------------------------------------------------- | :---------------------- | :----------------------------------
7373
Exercise a particular program path with specific input values and verify the results | [TEST()](#simple-tests) | [Test Case][istqb test case]
7474

7575

76-
[istqb test case]: http://glossary.istqb.org/en/search/test%20case
77-
[istqb test suite]: http://glossary.istqb.org/en/search/test%20suite
76+
[istqb test case]: https://glossary.istqb.org/en/search/test%20case
77+
[istqb test suite]: https://glossary.istqb.org/en/search/test%20suite
7878

7979
## Basic Concepts
8080

googlemock/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ derive better designs of your system and write better tests.
77

88
It is inspired by:
99

10-
* [jMock](http://www.jmock.org/)
11-
* [EasyMock](http://www.easymock.org/)
12-
* [Hamcrest](http://code.google.com/p/hamcrest/)
10+
* [jMock](https://www.jmock.org/)
11+
* [EasyMock](https://www.easymock.org/)
12+
* [Hamcrest](https://code.google.com/p/hamcrest/)
1313

1414
It is designed with C++'s specifics in mind.
1515

@@ -36,5 +36,5 @@ Details and examples can be found here:
3636
* [gMock Cheat Sheet](https://google.github.io/googletest/gmock_cheat_sheet.html)
3737

3838
GoogleMock is a part of
39-
[GoogleTest C++ testing framework](http://github.com/google/googletest/) and a
39+
[GoogleTest C++ testing framework](https://github.com/google/googletest/) and a
4040
subject to the same requirements.

googlemock/src/gmock-matchers.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ GTEST_API_ std::string FormatMatcherDescription(
120120
// [1] Cormen, et al (2001). "Section 26.2: The Ford-Fulkerson method".
121121
// "Introduction to Algorithms (Second ed.)", pp. 651-664.
122122
// [2] "Ford-Fulkerson algorithm", Wikipedia,
123-
// 'http://en.wikipedia.org/wiki/Ford%E2%80%93Fulkerson_algorithm'
123+
// 'https://en.wikipedia.org/wiki/Ford%E2%80%93Fulkerson_algorithm'
124124
class MaxBipartiteMatchState {
125125
public:
126126
explicit MaxBipartiteMatchState(const MatchMatrix& graph)

googletest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ GoogleTest comes with a CMake build script
1212
([CMakeLists.txt](https://github.com/google/googletest/blob/main/CMakeLists.txt))
1313
that can be used on a wide range of platforms ("C" stands for cross-platform.).
1414
If you don't have CMake installed already, you can download it for free from
15-
<http://www.cmake.org/>.
15+
<https://www.cmake.org/>.
1616

1717
CMake works by generating native makefiles or build projects that can be used in
1818
the compiler environment of your choice. You can either build GoogleTest as a

googletest/cmake/internal_utils.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ macro(config_compiler_and_linker)
8080
set(cxx_no_exception_flags "-EHs-c- -D_HAS_EXCEPTIONS=0")
8181
set(cxx_no_rtti_flags "-GR-")
8282
# Suppress "unreachable code" warning
83-
# http://stackoverflow.com/questions/3232669 explains the issue.
83+
# https://stackoverflow.com/questions/3232669 explains the issue.
8484
set(cxx_base_flags "${cxx_base_flags} -wd4702")
8585
# Ensure MSVC treats source files as UTF-8 encoded.
8686
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")

googletest/include/gtest/internal/gtest-internal.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
//
7979
// will result in the token foo__LINE__, instead of foo followed by
8080
// the current line number. For more details, see
81-
// http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6
81+
// https://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6
8282
#define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar)
8383
#define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo##bar
8484

@@ -169,7 +169,7 @@ namespace edit_distance {
169169
// All edits cost the same, with replace having lower priority than
170170
// add/remove.
171171
// Simple implementation of the Wagner-Fischer algorithm.
172-
// See http://en.wikipedia.org/wiki/Wagner-Fischer_algorithm
172+
// See https://en.wikipedia.org/wiki/Wagner-Fischer_algorithm
173173
enum EditType { kMatch, kAdd, kRemove, kReplace };
174174
GTEST_API_ std::vector<EditType> CalculateOptimalEdits(
175175
const std::vector<size_t>& left, const std::vector<size_t>& right);
@@ -236,7 +236,7 @@ GTEST_API_ std::string GetBoolAssertionFailureMessage(
236236
// For double, there are 11 exponent bits and 52 fraction bits.
237237
//
238238
// More details can be found at
239-
// http://en.wikipedia.org/wiki/IEEE_floating-point_standard.
239+
// https://en.wikipedia.org/wiki/IEEE_floating-point_standard.
240240
//
241241
// Template parameter:
242242
//
@@ -281,7 +281,7 @@ class FloatingPoint {
281281
// bits. Therefore, 4 should be enough for ordinary use.
282282
//
283283
// See the following article for more details on ULP:
284-
// http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/
284+
// https://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/
285285
static const uint32_t kMaxUlps = 4;
286286

287287
// Constructs a FloatingPoint from a raw floating-point number.
@@ -362,7 +362,7 @@ class FloatingPoint {
362362
// N - 1 (the biggest number representable using
363363
// sign-and-magnitude) is represented by 2N - 1.
364364
//
365-
// Read http://en.wikipedia.org/wiki/Signed_number_representations
365+
// Read https://en.wikipedia.org/wiki/Signed_number_representations
366366
// for more details on signed number representations.
367367
static Bits SignAndMagnitudeToBiased(const Bits& sam) {
368368
if (kSignBitMask & sam) {

googletest/include/gtest/internal/gtest-port.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ typedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION;
609609
// Determines whether clone(2) is supported.
610610
// Usually it will only be available on Linux, excluding
611611
// Linux on the Itanium architecture.
612-
// Also see http://linux.die.net/man/2/clone.
612+
// Also see https://linux.die.net/man/2/clone.
613613
#ifndef GTEST_HAS_CLONE
614614
// The user didn't tell us, so we need to figure it out.
615615

googletest/src/gtest-death-test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ DeathTest::TestRole WindowsDeathTest::AssumeRole() {
783783
StreamableToString(static_cast<unsigned int>(::GetCurrentProcessId())) +
784784
// size_t has the same width as pointers on both 32-bit and 64-bit
785785
// Windows platforms.
786-
// See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx.
786+
// See https://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx.
787787
"|" + StreamableToString(reinterpret_cast<size_t>(write_handle)) + "|" +
788788
StreamableToString(reinterpret_cast<size_t>(event_handle_.Get()));
789789

googletest/src/gtest-internal-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ void ShuffleRange(internal::Random* random, int begin, int end,
312312
<< begin << ", " << size << "].";
313313

314314
// Fisher-Yates shuffle, from
315-
// http://en.wikipedia.org/wiki/Fisher-Yates_shuffle
315+
// https://en.wikipedia.org/wiki/Fisher-Yates_shuffle
316316
for (int range_width = end - begin; range_width >= 2; range_width--) {
317317
const int last_in_range = begin + range_width - 1;
318318
const int selected =

0 commit comments

Comments
 (0)