Skip to content

Commit 851c0e4

Browse files
committed
Use HTTPS links instead of HTTP
This PR replaces all the HTTP links in the repository to use HTTPS links instead.
1 parent 433f704 commit 851c0e4

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Robolectric
22

3-
This repository contains the source of the documentation that lives at [robolectric.org](http://robolectric.org).
3+
This repository contains the source of the documentation that lives at [robolectric.org](https://robolectric.org).
44

55
## Contributing
66

docs/blog/posts/2017-03-01-hermetic-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ slug: hermetic-builds
1111

1212
Robolectric needs access to multiple Android SDK jars in order to perform its magic, which means it needs special configuration beyond just setting up dependencies in your build. By default, it tries to download Android SDK jars from Maven Central.
1313

14-
But what if you have a [hermetic build environment](http://blog.fahhem.com/2013/12/hermetic-build-systems/)? You just need to do a little more configuration.
14+
But what if you have a [hermetic build environment](https://blog.fahhem.com/2013/12/hermetic-build-systems/)? You just need to do a little more configuration.
1515

1616
Here's a Gradle build script that'll help:
1717

docs/blog/posts/2021-10-06-sharedTest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import org.robolectric.annotation.LooperMode
2727
/**
2828
* A test using the androidx.test unified API, which can execute on an Android device or locally using Robolectric.
2929
*
30-
* See [testing documentation](http://d.android.com/tools/testing).
30+
* See [testing documentation](https://d.android.com/tools/testing).
3131
*/
3232
@RunWith(AndroidJUnit4::class)
3333
class SampleFragmentTest {

docs/configuring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Since Robolectric **4.9.1**, you can now add these parameters :
111111
* **robolectric.dependency.proxy.host** — Set the host of the proxy to use for the runtime dependencies.
112112
* **robolectric.dependency.proxy.port** — Set the port number of the proxy to use for the runtime dependencies (default `0`).
113113

114-
When using Gradle, you can configure the System Properties for unit tests with the `all` block (see [here](http://tools.android.com/tech-docs/unit-testing-support)). For example, to override the Maven repository URL and ID to download the runtime dependencies from a repository other than Maven Central:
114+
When using Gradle, you can configure the System Properties for unit tests with the `all` block (see [here](https://developer.android.com/studio/test/advanced-test-setup#configure-gradle-test-options)). For example, to override the Maven repository URL and ID to download the runtime dependencies from a repository other than Maven Central:
115115

116116
```groovy
117117
android {

docs/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Robolectric will release javadoc at {{ config.site_url }} after every main versi
5353

5454
### Deprecations and Backwards Compatibility
5555

56-
To provide an easy upgrade path, we aim to always mark methods or classes `@Deprecated` in at least a patch release before removing them in the next minor release. We realize that's not quite how [Semantic Versioning](http://semver.org/) is supposed to work, sorry. Be sure to include migration notes in the `/** @deprecated */` javadoc!
56+
To provide an easy upgrade path, we aim to always mark methods or classes `@Deprecated` in at least a patch release before removing them in the next minor release. We realize that's not quite how [Semantic Versioning](https://semver.org/) is supposed to work, sorry. Be sure to include migration notes in the `/** @deprecated */` javadoc!
5757

5858
## Discussion
5959

docs/extending.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Using byte code instrumentation Robolectric is able to weave in cross platform f
1212

1313
### What's in a Name?
1414

15-
Why "Shadow?" Shadow objects are not quite [Proxies](http://en.wikipedia.org/wiki/Proxy_pattern "Proxy pattern - Wikipedia, the free encyclopedia"), not quite [Fakes](http://c2.com/cgi/wiki?FakeObject "Fake Object"), not quite [Mocks or Stubs](http://martinfowler.com/articles/mocksArentStubs.html#TheDifferenceBetweenMocksAndStubs "Mocks Aren't Stubs"). Shadows are sometimes hidden, sometimes seen, and can lead you to the real object. At least we didn't call them "sheep", which we were considering.
15+
Why "Shadow?" Shadow objects are not quite [Proxies](https://en.wikipedia.org/wiki/Proxy_pattern "Proxy pattern - Wikipedia, the free encyclopedia"), not quite [Fakes](https://c2.com/cgi/wiki?FakeObject "Fake Object"), not quite [Mocks or Stubs](https://martinfowler.com/articles/mocksArentStubs.html#TheDifferenceBetweenMocksAndStubs "Mocks Aren't Stubs"). Shadows are sometimes hidden, sometimes seen, and can lead you to the real object. At least we didn't call them "sheep", which we were considering.
1616

1717
### Shadow Classes
1818

docs/using-qualifiers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ hide:
55

66
# Using Qualified Resources
77

8-
As described [in the android developer docs](http://developer.android.com/guide/topics/resources/providing-resources.html#AlternativeResources), resource qualifiers allow you to change how your resources are loaded based on such factors as the language on the device, to the screen size, to whether it is day or night. While these changes are often tedious to test rigorously (every string has a translation for all supported languages), you may find yourself wishing to run tests in different resource qualified contexts.
8+
As described [in the android developer docs](https://developer.android.com/guide/topics/resources/providing-resources.html#AlternativeResources), resource qualifiers allow you to change how your resources are loaded based on such factors as the language on the device, to the screen size, to whether it is day or night. While these changes are often tedious to test rigorously (every string has a translation for all supported languages), you may find yourself wishing to run tests in different resource qualified contexts.
99

1010
## Specifying Resources in Test
1111

@@ -48,4 +48,4 @@ public void shouldUseEnglishAndPortraitResources() {
4848
}
4949
```
5050

51-
Multiple qualifiers should be separated by dashes and provided in the order put forth in [this list](http://developer.android.com/guide/topics/resources/providing-resources.html#table2).
51+
Multiple qualifiers should be separated by dashes and provided in the order put forth in [this list](https://developer.android.com/guide/topics/resources/providing-resources.html#table2).

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ extra:
8888
social:
8989
- name: "GitHub Project"
9090
icon: fontawesome/brands/github
91-
link: "http://github.com/robolectric/robolectric"
91+
link: "https://github.com/robolectric/robolectric"
9292
9393
icon: fontawesome/regular/envelope
94-
link: "http://groups.google.com/group/robolectric"
94+
link: "https://groups.google.com/group/robolectric"
9595
- name: "@Robolectric"
9696
icon: fontawesome/brands/x-twitter
9797
link: "https://x.com/robolectric"

0 commit comments

Comments
 (0)