- * The assertj-examples project provides a working example of registering a custom representation. + * The assertj-examples project provides a working example of registering a custom representation. *
* Registering a representation has been introduced in AssertJ 2.9.0/3.9.0.
*
diff --git a/src/main/scripts/convert-junit5-assertions-to-assertj.sh b/src/main/scripts/convert-junit5-assertions-to-assertj.sh
index db5401bfe0..1e71209b9a 100755
--- a/src/main/scripts/convert-junit5-assertions-to-assertj.sh
+++ b/src/main/scripts/convert-junit5-assertions-to-assertj.sh
@@ -6,7 +6,7 @@ function usage() {
echo "convert-junit5-assertions-to-assertj.sh - Converts most of JUnit 5 assertions to AssertJ assertions"
echo
echo "AUTHOR"
- echo "this script is based on JUnit 4 script found at http://joel-costigliola.github.io/assertj/assertj-core-converting-junit-assertions-to-assertj.html
+ echo "this script is based on JUnit 4 script found at https://assertj.github.io/doc/#assertj-migration
The changes in regexps are mostly due to the fact the order arguments changed
in JUnit 5 (i.e. message moved to the last position). Kudos to whoever wrote the original script!"
echo
diff --git a/src/test/java/org/assertj/core/api/WithAssertions_delegation_Test.java b/src/test/java/org/assertj/core/api/WithAssertions_delegation_Test.java
index 41486d3c25..d47325603c 100644
--- a/src/test/java/org/assertj/core/api/WithAssertions_delegation_Test.java
+++ b/src/test/java/org/assertj/core/api/WithAssertions_delegation_Test.java
@@ -945,12 +945,12 @@ void withAssertions_assertThat_doublePredicate_Test() {
@Test
void withAssertions_assertThat_url_Test() throws MalformedURLException {
- assertThat(new URL("https://github.com/joel-costigliola/assertj-core")).hasHost("github.com");
+ assertThat(new URL("https://github.com/assertj/assertj-core")).hasHost("github.com");
}
@Test
void withAssertions_assertThat_uri_Test() {
- assertThat(java.net.URI.create("https://github.com/joel-costigliola/assertj-core")).hasHost("github.com");
+ assertThat(java.net.URI.create("https://github.com/assertj/assertj-core")).hasHost("github.com");
}
@Test
diff --git a/src/test/java/org/assertj/core/api/iterable/SetAssert_raw_set_assertions_chained_after_superclass_method_Test.java b/src/test/java/org/assertj/core/api/iterable/SetAssert_raw_set_assertions_chained_after_superclass_method_Test.java
index 61201dd8b4..1072618e2a 100644
--- a/src/test/java/org/assertj/core/api/iterable/SetAssert_raw_set_assertions_chained_after_superclass_method_Test.java
+++ b/src/test/java/org/assertj/core/api/iterable/SetAssert_raw_set_assertions_chained_after_superclass_method_Test.java
@@ -78,7 +78,7 @@ void raw_set_assertions_mixed_with_inherited_methods() {
@SuppressWarnings({ "unchecked", "rawtypes" })
@Test
void test_bug_485() {
- // https://github.com/joel-costigliola/assertj-core/issues/485
+ // https://github.com/assertj/assertj-core/issues/485
Set set = new java.util.HashSet<>();
set.add("Key1");
set.add("Key2");
diff --git a/src/test/java/org/assertj/core/api/list/ListAssert_raw_list_assertions_chained_after_superclass_method_Test.java b/src/test/java/org/assertj/core/api/list/ListAssert_raw_list_assertions_chained_after_superclass_method_Test.java
index 20a19a6a8d..64000b1552 100644
--- a/src/test/java/org/assertj/core/api/list/ListAssert_raw_list_assertions_chained_after_superclass_method_Test.java
+++ b/src/test/java/org/assertj/core/api/list/ListAssert_raw_list_assertions_chained_after_superclass_method_Test.java
@@ -80,7 +80,7 @@ void raw_list_assertions_mixed_with_inherited_methods() {
@SuppressWarnings({ "unchecked", "rawtypes" })
@Test
void test_bug_485() {
- // https://github.com/joel-costigliola/assertj-core/issues/485
+ // https://github.com/assertj/assertj-core/issues/485
List list = new java.util.ArrayList<>();
list.add("Key1");
list.add("Key2");
diff --git a/src/test/java/org/assertj/core/api/map/MapAssert_raw_map_assertions_chained_after_base_assertions_Test.java b/src/test/java/org/assertj/core/api/map/MapAssert_raw_map_assertions_chained_after_base_assertions_Test.java
index 6266d679b1..530ce204d7 100644
--- a/src/test/java/org/assertj/core/api/map/MapAssert_raw_map_assertions_chained_after_base_assertions_Test.java
+++ b/src/test/java/org/assertj/core/api/map/MapAssert_raw_map_assertions_chained_after_base_assertions_Test.java
@@ -74,7 +74,7 @@ void raw_map_mixing_assertions_from_AbstractAssert_and_AbstractMapAssert() {
@SuppressWarnings({ "unchecked", "rawtypes" })
@Test
void test_bug_485() {
- // https://github.com/joel-costigliola/assertj-core/issues/485
+ // https://github.com/assertj/assertj-core/issues/485
Map map1 = new java.util.HashMap<>();
map1.put("Key1", "Value1");
map1.put("Key2", "Value2");
diff --git a/src/test/java/org/assertj/core/api/objectarray/ObjectArrayAssert_extracting_Test.java b/src/test/java/org/assertj/core/api/objectarray/ObjectArrayAssert_extracting_Test.java
index 46ba563eb7..6f6d235cd0 100644
--- a/src/test/java/org/assertj/core/api/objectarray/ObjectArrayAssert_extracting_Test.java
+++ b/src/test/java/org/assertj/core/api/objectarray/ObjectArrayAssert_extracting_Test.java
@@ -270,7 +270,7 @@ void should_allow_assertions_on_more_than_five_extracted_values_from_given_itera
tuple("Boromir", 37, MAN, "Boromir", 37, MAN));
}
- // https://github.com/joel-costigliola/assertj-core/issues/880
+ // https://github.com/assertj/assertj-core/issues/880
@Test
void should_be_able_to_extract_values_returned_from_default_methods_from_given_iterable_elements() {
List