From c3ab85eec1a9f978dcdcb94bc899a65558fa0847 Mon Sep 17 00:00:00 2001 From: Stefano Cordio Date: Fri, 15 Aug 2025 17:56:29 +0200 Subject: [PATCH 1/2] Replace `assertj-parent-pom` with `assertj-parent` 3.27.6 This change also simplifies the POM configuration and brings the necessary pieces to publish to the Central Publisher Portal. --- javadoc-theme/assertj-theme.css | 33 ++++++ javadoc-theme/hljs-theme.css | 108 ++++++++++++++++++ pom.xml | 65 +---------- .../vavr/api/SetAssert_allSatisfy_Test.java | 4 +- .../JUnitSoftVavrAssertionsFailureTest.java | 10 +- .../api/soft/SoftVavrAssertionsHelper.java | 2 +- 6 files changed, 154 insertions(+), 68 deletions(-) create mode 100644 javadoc-theme/assertj-theme.css create mode 100644 javadoc-theme/hljs-theme.css diff --git a/javadoc-theme/assertj-theme.css b/javadoc-theme/assertj-theme.css new file mode 100644 index 0000000..30842f7 --- /dev/null +++ b/javadoc-theme/assertj-theme.css @@ -0,0 +1,33 @@ +:root { + /* body, block and code fonts */ + --body-font-family: Verdana, Geneva, sans-serif; + --block-font-family: Verdana, Geneva, serif; + /* Text colors for body and block elements */ + --body-text-color: #000000; + --block-text-color: #000000; + /* Background colors for various structural elements */ + --body-background-color: #edd9a6; + --section-background-color: #e9d195; + --detail-background-color: #edd9a6; + /* Colors for navigation bar and table captions */ + --navbar-background-color: #232323; + --navbar-text-color: #edd9a6; + /* Background color for subnavigation and various headers */ + --subnav-background-color: #e5c880; + /* Background and text colors for selected tabs and navigation items */ + --selected-background-color: #e5c880; + --selected-text-color: #000000; + --selected-link-color: #861203; + /* Background colors for generated tables */ + --even-row-color: #edd9a6; + --odd-row-color: #e7ce8e; + /* Text color for page title */ + --title-color: #000000; + /* Text colors for links */ + --link-color: #861203; + --link-color-active: #641003; + /* Border colors for structural elements and user defined tables */ + --border-color: #e5c880; + /* Search input colors */ + --search-input-background-color: #edd9a6; +} diff --git a/javadoc-theme/hljs-theme.css b/javadoc-theme/hljs-theme.css new file mode 100644 index 0000000..1e2e177 --- /dev/null +++ b/javadoc-theme/hljs-theme.css @@ -0,0 +1,108 @@ +/* + +Railscasts-like style (c) Visoft, Inc. (Damien White) + +*/ + +.hljs { + display: block; + overflow-x: auto; + padding: 0.5em; + background: #232323; + color: #e6e1dc; + /* added by us */ + border-radius:8px; +} + +.hljs-comment, +.hljs-quote { + color: #bc9458; + font-style: italic; +} + +.hljs-keyword, +.hljs-selector-tag { + color: #c26230; +} + +.hljs-string, +.hljs-number, +.hljs-regexp, +.hljs-variable, +.hljs-template-variable { + color: #a5c261; +} + +.hljs-subst { + color: #519f50; +} + +.hljs-tag, +.hljs-name { + color: #e8bf6a; +} + +.hljs-type { + color: #ffc66d; +} + + +.hljs-symbol, +.hljs-bullet, +.hljs-built_in, +.hljs-builtin-name, +.hljs-attr, +.hljs-link { + color: #6d9cbe; +} + +.hljs-params { + color: #d0d0ff; +} + +.hljs-attribute { + color: #cda869; +} + +.hljs-meta { + color: #9b859d; +} + +.hljs-title, +.hljs-section { + color: #ffc66d; +} + +.hljs-addition { + background-color: #144212; + color: #e6e1dc; + display: inline-block; + width: 100%; +} + +.hljs-deletion { + background-color: #600; + color: #e6e1dc; + display: inline-block; + width: 100%; +} + +.hljs-selector-class { + color: #9b703f; +} + +.hljs-selector-id { + color: #8b98ab; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} + +.hljs-link { + text-decoration: underline; +} diff --git a/pom.xml b/pom.xml index a604bff..41842c8 100644 --- a/pom.xml +++ b/pom.xml @@ -5,8 +5,8 @@ org.assertj - assertj-parent-pom - 2.2.18 + assertj-parent + 3.27.6 assertj-vavr @@ -16,13 +16,6 @@ Rich and fluent assertions for testing Vavr tools 2017 - - - The Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - - - scm:git:git@github.com:assertj/assertj-vavr.git scm:git:git@github.com:assertj/assertj-vavr.git @@ -68,40 +61,11 @@ https://github.com/assertj/assertj-vavr/issues - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - - - - - org.junit - junit-bom - 5.11.3 - pom - import - - - junit - junit - 4.13.2 - test - - - - org.assertj assertj-core - 3.26.3 + 3.27.6 io.vavr @@ -132,12 +96,6 @@ - - 8 - 8 - 8 - - @@ -156,23 +114,6 @@ - - - com.mycila - license-maven-plugin - - - - 2024 - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - org.jacoco jacoco-maven-plugin diff --git a/src/test/java/org/assertj/vavr/api/SetAssert_allSatisfy_Test.java b/src/test/java/org/assertj/vavr/api/SetAssert_allSatisfy_Test.java index ce4a3e5..992e61e 100644 --- a/src/test/java/org/assertj/vavr/api/SetAssert_allSatisfy_Test.java +++ b/src/test/java/org/assertj/vavr/api/SetAssert_allSatisfy_Test.java @@ -69,13 +69,13 @@ void should_fail_if_all_Set_elements_do_not_satisfy_consumer() { }) ) .isInstanceOf(AssertionError.class) - .hasMessage("\n" + + .hasMessageStartingWith("\n" + "Expecting all elements of:\n" + " HashSet(value1, value2)\n" + "to satisfy given requirements, but these elements did not:\n" + "\n" + "\"value2\"\n" + - "error: \n" + + "error: org.opentest4j.AssertionFailedError: \n" + "expected: \"value1\"\n" + " but was: \"value2\""); } diff --git a/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsFailureTest.java b/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsFailureTest.java index 9076ab5..6c44943 100644 --- a/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsFailureTest.java +++ b/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsFailureTest.java @@ -37,13 +37,17 @@ public void should_rule_for_soft_assertion_work() { softly.assertThat(actual).as("instance").containsLeftInstanceOf(Long.class); // WHEN simulating the rule - MultipleFailuresError multipleFailuresError = catchThrowableOfType(() -> softly.apply(mock(Statement.class), null).evaluate(), - MultipleFailuresError.class); + MultipleFailuresError multipleFailuresError = catchThrowableOfType(MultipleFailuresError.class, + () -> softly.apply(mock(Statement.class), null).evaluate()); // THEN List failures = multipleFailuresError.getFailures(); assertThat(failures).hasSize(2); - assertThat(failures.get(0)).hasMessageStartingWith(format("[contains] %nExpecting:%n %nto contain:%n <\"else\">%nbut did not.")); + assertThat(failures.get(0)).hasMessageStartingWith(format("[contains] %nExpecting:%n" + + " %" + + "nto contain:%n" + + " <\"else\"> on the [LEFT]%n" + + "but did not.")); assertThat(failures.get(1)).hasMessageStartingWith(format("[instance] %nExpecting:%n" + " %n" + "to contain a value that is an instance of:%n" + diff --git a/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsHelper.java b/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsHelper.java index 8ee0b03..f43a797 100644 --- a/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsHelper.java +++ b/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsHelper.java @@ -59,7 +59,7 @@ static void verifyErrors(Double evaluatedVal, MultipleFailuresError e) { assertThat(errors.get(7)) .contains(format("java.lang.AssertionError: %nExpecting Lazy to be evaluated, but it was not")); assertThat(errors.get(8)) - .startsWith(format("java.lang.AssertionError: %nExpecting all elements of:%n HashSet(Frodo, Bilbo)%nto satisfy given requirements, but these elements did not:%n%n\"Bilbo\"%nerror: %nExpecting actual:%n \"Bilbo\"%nto start with:%n \"F\"%n")); + .startsWith(format("java.lang.AssertionError: %nExpecting all elements of:%n HashSet(Frodo, Bilbo)%nto satisfy given requirements, but these elements did not:%n%n\"Bilbo\"%nerror: java.lang.AssertionError: %nExpecting actual:%n \"Bilbo\"%nto start with:%n \"F\"%n")); assertThat(errors.get(9)) .contains(format("java.lang.AssertionError: %nExpected size: 1 but was: 2 in:%nHashSet(Frodo, Bilbo)")); assertThat(errors.get(10)) From cf971bb8a280ac099fef9441fdb16baff8efc7cd Mon Sep 17 00:00:00 2001 From: Stefano Cordio Date: Sun, 9 Nov 2025 10:20:13 +0100 Subject: [PATCH 2/2] Update license headers --- src/main/java/org/assertj/vavr/api/AbstractEitherAssert.java | 2 +- src/main/java/org/assertj/vavr/api/AbstractLazyAssert.java | 2 +- src/main/java/org/assertj/vavr/api/AbstractMapAssert.java | 2 +- src/main/java/org/assertj/vavr/api/AbstractMultimapAssert.java | 2 +- src/main/java/org/assertj/vavr/api/AbstractOptionAssert.java | 2 +- src/main/java/org/assertj/vavr/api/AbstractSeqAssert.java | 2 +- src/main/java/org/assertj/vavr/api/AbstractSetAssert.java | 2 +- .../java/org/assertj/vavr/api/AbstractTraversableAssert.java | 2 +- src/main/java/org/assertj/vavr/api/AbstractTryAssert.java | 2 +- .../java/org/assertj/vavr/api/AbstractValidationAssert.java | 2 +- src/main/java/org/assertj/vavr/api/AbstractValueAssert.java | 2 +- src/main/java/org/assertj/vavr/api/AbstractVavrAssert.java | 2 +- .../java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java | 2 +- src/main/java/org/assertj/vavr/api/EitherAssert.java | 2 +- src/main/java/org/assertj/vavr/api/EitherShouldBeLeft.java | 2 +- src/main/java/org/assertj/vavr/api/EitherShouldBeRight.java | 2 +- src/main/java/org/assertj/vavr/api/EitherShouldContain.java | 2 +- .../org/assertj/vavr/api/EitherShouldContainInstanceOf.java | 2 +- src/main/java/org/assertj/vavr/api/LazyAssert.java | 2 +- src/main/java/org/assertj/vavr/api/LazyShouldBeEvaluated.java | 2 +- .../java/org/assertj/vavr/api/LazyShouldBeNotEvaluated.java | 2 +- src/main/java/org/assertj/vavr/api/MapAssert.java | 2 +- src/main/java/org/assertj/vavr/api/MultimapAssert.java | 2 +- src/main/java/org/assertj/vavr/api/OptionAssert.java | 2 +- src/main/java/org/assertj/vavr/api/OptionShouldBeEmpty.java | 2 +- src/main/java/org/assertj/vavr/api/OptionShouldBePresent.java | 2 +- src/main/java/org/assertj/vavr/api/OptionShouldContain.java | 2 +- .../org/assertj/vavr/api/OptionShouldContainInstanceOf.java | 2 +- src/main/java/org/assertj/vavr/api/SeqAssert.java | 2 +- src/main/java/org/assertj/vavr/api/SeqShouldBeAtIndex.java | 2 +- src/main/java/org/assertj/vavr/api/SeqShouldBeSorted.java | 2 +- src/main/java/org/assertj/vavr/api/SeqShouldHaveAtIndex.java | 2 +- src/main/java/org/assertj/vavr/api/SetAssert.java | 2 +- src/main/java/org/assertj/vavr/api/ShouldNotContainValues.java | 2 +- src/main/java/org/assertj/vavr/api/TryAssert.java | 2 +- src/main/java/org/assertj/vavr/api/TryShouldBeFailure.java | 2 +- src/main/java/org/assertj/vavr/api/TryShouldBeSuccess.java | 2 +- src/main/java/org/assertj/vavr/api/TryShouldContain.java | 2 +- .../java/org/assertj/vavr/api/TryShouldContainInstanceOf.java | 2 +- src/main/java/org/assertj/vavr/api/ValidationAssert.java | 2 +- .../java/org/assertj/vavr/api/ValidationShouldBeInvalid.java | 2 +- src/main/java/org/assertj/vavr/api/ValidationShouldBeValid.java | 2 +- src/main/java/org/assertj/vavr/api/ValidationShouldContain.java | 2 +- .../org/assertj/vavr/api/ValidationShouldContainInstanceOf.java | 2 +- src/main/java/org/assertj/vavr/api/VavrAssertions.java | 2 +- src/main/java/org/assertj/vavr/api/VavrAssumptions.java | 2 +- .../org/assertj/vavr/api/VavrInstanceOfAssertFactories.java | 2 +- .../assertj/vavr/api/soft/AutoCloseableSoftVavrAssertions.java | 2 +- .../java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertions.java | 2 +- src/main/java/org/assertj/vavr/api/soft/SoftVavrAssertions.java | 2 +- .../vavr/api/soft/StandardSoftVavrAssertionsProvider.java | 2 +- src/main/java/org/assertj/vavr/internal/Maps.java | 2 +- src/main/java/org/assertj/vavr/internal/Multimaps.java | 2 +- src/test/java/org/assertj/vavr/api/AssumptionRunner.java | 2 +- src/test/java/org/assertj/vavr/api/BaseAssumptionRunner.java | 2 +- src/test/java/org/assertj/vavr/api/BaseAssumptionsTest.java | 2 +- .../vavr/api/EitherAssert_containsLeftInstanceOf_Test.java | 2 +- .../assertj/vavr/api/EitherAssert_containsLeftSame_Test.java | 2 +- .../org/assertj/vavr/api/EitherAssert_containsLeft_Test.java | 2 +- ...rt_containsOnLeft_usingFieldByFieldValueComparator_Test.java | 2 +- .../EitherAssert_containsOnLeft_usingValueComparator_Test.java | 2 +- ...t_containsOnRight_usingFieldByFieldValueComparator_Test.java | 2 +- .../EitherAssert_containsOnRight_usingValueComparator_Test.java | 2 +- .../vavr/api/EitherAssert_containsRightInstanceOf_Test.java | 2 +- .../assertj/vavr/api/EitherAssert_containsRightSame_Test.java | 2 +- .../org/assertj/vavr/api/EitherAssert_containsRight_Test.java | 2 +- .../vavr/api/EitherAssert_hasLeftValueSatisfying_Test.java | 2 +- .../vavr/api/EitherAssert_hasRightValueSatisfying_Test.java | 2 +- .../java/org/assertj/vavr/api/EitherAssert_isLeft_Test.java | 2 +- .../java/org/assertj/vavr/api/EitherAssert_isRight_Test.java | 2 +- .../vavr/api/Either_assertion_methods_in_assumptions_Test.java | 2 +- .../java/org/assertj/vavr/api/LazyAssert_isEvaluated_Test.java | 2 +- .../org/assertj/vavr/api/LazyAssert_isNotEvaluated_Test.java | 2 +- .../vavr/api/Lazy_assertion_methods_in_assumptions_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_allSatisfy_Test.java | 2 +- .../assertj/vavr/api/MapAssert_containsAllEntriesOf_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_containsEntry_Test.java | 2 +- .../org/assertj/vavr/api/MapAssert_containsExactly_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_containsKey_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_containsKeys_Test.java | 2 +- .../org/assertj/vavr/api/MapAssert_containsOnlyKeys_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_containsOnly_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_containsValue_Test.java | 2 +- .../org/assertj/vavr/api/MapAssert_containsValues_Test.java | 2 +- .../assertj/vavr/api/MapAssert_contains_anyOf_entries_Test.java | 2 +- .../org/assertj/vavr/api/MapAssert_contains_entries_Test.java | 2 +- .../assertj/vavr/api/MapAssert_doesNotContainEntry_Test.java | 2 +- .../org/assertj/vavr/api/MapAssert_doesNotContainKey_Test.java | 2 +- .../org/assertj/vavr/api/MapAssert_doesNotContainKeys_Test.java | 2 +- .../assertj/vavr/api/MapAssert_doesNotContainValue_Test.java | 2 +- .../assertj/vavr/api/MapAssert_doesNotContainValues_Test.java | 2 +- .../assertj/vavr/api/MapAssert_doesNotContain_entries_Test.java | 2 +- .../org/assertj/vavr/api/MapAssert_hasEntrySatisfying_Test.java | 2 +- .../assertj/vavr/api/MapAssert_hasSameSizeAs_Array_Test.java | 2 +- .../assertj/vavr/api/MapAssert_hasSameSizeAs_Iterable_Test.java | 2 +- .../org/assertj/vavr/api/MapAssert_hasSizeGreaterThan_Test.java | 2 +- .../org/assertj/vavr/api/MapAssert_hasSizeLessThan_Test.java | 2 +- src/test/java/org/assertj/vavr/api/MapAssert_hasSize_Test.java | 2 +- src/test/java/org/assertj/vavr/api/MapAssert_isEmpty_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_isEqualTo_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_isNotEmpty_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_isNotEqualTo_Test.java | 2 +- .../java/org/assertj/vavr/api/MapAssert_isNullOrEmpty_Test.java | 2 +- .../vavr/api/Map_assertion_methods_in_assumptions_Test.java | 2 +- .../org/assertj/vavr/api/MultiMapAssert_isEqualTo_Test.java | 2 +- .../org/assertj/vavr/api/MultiMapAssert_isNotEqualTo_Test.java | 2 +- .../org/assertj/vavr/api/MultimapAssert_allSatisfy_Test.java | 2 +- .../vavr/api/MultimapAssert_containsAllEntriesOf_Test.java | 2 +- .../org/assertj/vavr/api/MultimapAssert_containsEntry_Test.java | 2 +- .../assertj/vavr/api/MultimapAssert_containsExactly_Test.java | 2 +- .../org/assertj/vavr/api/MultimapAssert_containsKey_Test.java | 2 +- .../org/assertj/vavr/api/MultimapAssert_containsKeys_Test.java | 2 +- .../assertj/vavr/api/MultimapAssert_containsOnlyKeys_Test.java | 2 +- .../org/assertj/vavr/api/MultimapAssert_containsOnly_Test.java | 2 +- .../org/assertj/vavr/api/MultimapAssert_containsValue_Test.java | 2 +- .../assertj/vavr/api/MultimapAssert_containsValues_Test.java | 2 +- .../vavr/api/MultimapAssert_contains_anyOf_entries_Test.java | 2 +- .../assertj/vavr/api/MultimapAssert_contains_entries_Test.java | 2 +- .../vavr/api/MultimapAssert_doesNotContainEntry_Test.java | 2 +- .../assertj/vavr/api/MultimapAssert_doesNotContainKey_Test.java | 2 +- .../vavr/api/MultimapAssert_doesNotContainKeys_Test.java | 2 +- .../vavr/api/MultimapAssert_doesNotContainValue_Test.java | 2 +- .../vavr/api/MultimapAssert_doesNotContainValues_Test.java | 2 +- .../vavr/api/MultimapAssert_doesNotContain_entries_Test.java | 2 +- .../vavr/api/MultimapAssert_hasEntrySatisfying_Test.java | 2 +- .../vavr/api/MultimapAssert_hasSameSizeAs_Array_Test.java | 2 +- .../vavr/api/MultimapAssert_hasSameSizeAs_Iterable_Test.java | 2 +- .../vavr/api/MultimapAssert_hasSizeGreaterThan_Test.java | 2 +- .../assertj/vavr/api/MultimapAssert_hasSizeLessThan_Test.java | 2 +- .../java/org/assertj/vavr/api/MultimapAssert_hasSize_Test.java | 2 +- .../java/org/assertj/vavr/api/MultimapAssert_isEmpty_Test.java | 2 +- .../org/assertj/vavr/api/MultimapAssert_isNotEmpty_Test.java | 2 +- .../org/assertj/vavr/api/MultimapAssert_isNullOrEmpty_Test.java | 2 +- .../api/Multimap_assertion_methods_in_assumptions_Test.java | 2 +- .../assertj/vavr/api/OptionAssert_containsInstanceOf_Test.java | 2 +- .../org/assertj/vavr/api/OptionAssert_containsSame_Test.java | 2 +- .../java/org/assertj/vavr/api/OptionAssert_contains_Test.java | 2 +- ...onAssert_contains_usingFieldByFieldValueComparator_Test.java | 2 +- .../api/OptionAssert_contains_usingValueComparator_Test.java | 2 +- .../java/org/assertj/vavr/api/OptionAssert_flatMap_Test.java | 2 +- .../api/OptionAssert_hasValueSatisfying_Condition_Test.java | 2 +- .../assertj/vavr/api/OptionAssert_hasValueSatisfying_Test.java | 2 +- .../java/org/assertj/vavr/api/OptionAssert_isDefined_Test.java | 2 +- .../java/org/assertj/vavr/api/OptionAssert_isEmpty_Test.java | 2 +- src/test/java/org/assertj/vavr/api/OptionAssert_map_Test.java | 2 +- .../vavr/api/Option_assertion_methods_in_assumptions_Test.java | 2 +- .../vavr/api/SeqAssert_containsExactly_inAnyOrder_Test.java | 2 +- .../org/assertj/vavr/api/SeqAssert_contains_atIndex_Test.java | 2 +- .../assertj/vavr/api/SeqAssert_doesNotContain_atIndex_Test.java | 2 +- .../java/org/assertj/vavr/api/SeqAssert_has_atIndex_Test.java | 2 +- .../assertj/vavr/api/SeqAssert_isSortedAccordingTo_Test.java | 2 +- src/test/java/org/assertj/vavr/api/SeqAssert_isSorted_Test.java | 2 +- .../java/org/assertj/vavr/api/SeqAssert_is_atIndex_Test.java | 2 +- .../org/assertj/vavr/api/SeqAssert_satisfies_atIndex_Test.java | 2 +- .../vavr/api/Seq_assertion_methods_in_assumptions_Test.java | 2 +- .../java/org/assertj/vavr/api/SetAssert_allSatisfy_Test.java | 2 +- src/test/java/org/assertj/vavr/api/SetAssert_hasSize_Test.java | 2 +- src/test/java/org/assertj/vavr/api/SetAssert_isEmpty_Test.java | 2 +- .../vavr/api/Set_assertion_methods_in_assumptions_Test.java | 2 +- src/test/java/org/assertj/vavr/api/TestCondition.java | 2 +- .../org/assertj/vavr/api/TryAssert_containsInstanceOf_Test.java | 2 +- .../java/org/assertj/vavr/api/TryAssert_containsSame_Test.java | 2 +- src/test/java/org/assertj/vavr/api/TryAssert_contains_Test.java | 2 +- ...ryAssert_contains_usingFieldByFieldValueComparator_Test.java | 2 +- .../vavr/api/TryAssert_contains_usingValueComparator_Test.java | 2 +- .../java/org/assertj/vavr/api/TryAssert_failBecauseOf_Test.java | 2 +- .../assertj/vavr/api/TryAssert_failReasonHasMessage_Test.java | 2 +- .../vavr/api/TryAssert_hasValueSatisfying_Condition_Test.java | 2 +- .../org/assertj/vavr/api/TryAssert_hasValueSatisfying_Test.java | 2 +- .../java/org/assertj/vavr/api/TryAssert_isFailure_Test.java | 2 +- .../java/org/assertj/vavr/api/TryAssert_isSuccess_Test.java | 2 +- .../vavr/api/Try_assertion_methods_in_assumptions_Test.java | 2 +- .../api/ValidationAssert_containsInvalidInstanceOf_Test.java | 2 +- .../vavr/api/ValidationAssert_containsInvalidSame_Test.java | 2 +- ...lidationAssert_containsInvalidSatisfying_Condition_Test.java | 2 +- ...alidationAssert_containsInvalidSatisfying_Consumer_Test.java | 2 +- .../assertj/vavr/api/ValidationAssert_containsInvalid_Test.java | 2 +- ...t_containsInvalid_usingFieldByFieldValueComparator_Test.java | 2 +- ...idationAssert_containsInvalid_usingValueComparator_Test.java | 2 +- .../vavr/api/ValidationAssert_containsValidInstanceOf_Test.java | 2 +- .../vavr/api/ValidationAssert_containsValidSame_Test.java | 2 +- ...ValidationAssert_containsValidSatisfying_Condition_Test.java | 2 +- .../ValidationAssert_containsValidSatisfying_Consumer_Test.java | 2 +- .../assertj/vavr/api/ValidationAssert_containsValid_Test.java | 2 +- ...ert_containsValid_usingFieldByFieldValueComparator_Test.java | 2 +- ...alidationAssert_containsValid_usingValueComparator_Test.java | 2 +- .../org/assertj/vavr/api/ValidationAssert_isInvalid_Test.java | 2 +- .../org/assertj/vavr/api/ValidationAssert_isValid_Test.java | 2 +- .../api/Validation_assertion_methods_in_assumptions_Test.java | 2 +- .../org/assertj/vavr/api/VavrInstanceOfAssertFactoriesTest.java | 2 +- .../vavr/api/soft/AutoCloseableSoftVavrAssertionsTest.java | 2 +- .../vavr/api/soft/JUnitSoftVavrAssertionsFailureTest.java | 2 +- .../vavr/api/soft/JUnitSoftVavrAssertionsSuccessTest.java | 2 +- .../org/assertj/vavr/api/soft/SoftVavrAssertionsHelper.java | 2 +- .../java/org/assertj/vavr/api/soft/SoftVavrAssertionsTest.java | 2 +- 195 files changed, 195 insertions(+), 195 deletions(-) diff --git a/src/main/java/org/assertj/vavr/api/AbstractEitherAssert.java b/src/main/java/org/assertj/vavr/api/AbstractEitherAssert.java index bb5ddd4..02b3962 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractEitherAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractEitherAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractLazyAssert.java b/src/main/java/org/assertj/vavr/api/AbstractLazyAssert.java index 2c21cac..4f1ffbb 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractLazyAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractLazyAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractMapAssert.java b/src/main/java/org/assertj/vavr/api/AbstractMapAssert.java index 7bdba1e..2ab7a29 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractMapAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractMapAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractMultimapAssert.java b/src/main/java/org/assertj/vavr/api/AbstractMultimapAssert.java index 4aac71a..3e43716 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractMultimapAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractMultimapAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractOptionAssert.java b/src/main/java/org/assertj/vavr/api/AbstractOptionAssert.java index a030517..7f3e26a 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractOptionAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractOptionAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractSeqAssert.java b/src/main/java/org/assertj/vavr/api/AbstractSeqAssert.java index d05148e..ab24121 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractSeqAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractSeqAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractSetAssert.java b/src/main/java/org/assertj/vavr/api/AbstractSetAssert.java index cacf54d..fe0afdf 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractSetAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractSetAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractTraversableAssert.java b/src/main/java/org/assertj/vavr/api/AbstractTraversableAssert.java index 5715790..5e9e650 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractTraversableAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractTraversableAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractTryAssert.java b/src/main/java/org/assertj/vavr/api/AbstractTryAssert.java index bc3c159..78f3350 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractTryAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractTryAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractValidationAssert.java b/src/main/java/org/assertj/vavr/api/AbstractValidationAssert.java index bb4379e..ad60185 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractValidationAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractValidationAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractValueAssert.java b/src/main/java/org/assertj/vavr/api/AbstractValueAssert.java index 4ccd0f3..2043148 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractValueAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractValueAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/AbstractVavrAssert.java b/src/main/java/org/assertj/vavr/api/AbstractVavrAssert.java index 663dfb9..75effa1 100644 --- a/src/main/java/org/assertj/vavr/api/AbstractVavrAssert.java +++ b/src/main/java/org/assertj/vavr/api/AbstractVavrAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java b/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java index c0ddd37..c7db56d 100644 --- a/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java +++ b/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/EitherAssert.java b/src/main/java/org/assertj/vavr/api/EitherAssert.java index d0635f9..fd44032 100644 --- a/src/main/java/org/assertj/vavr/api/EitherAssert.java +++ b/src/main/java/org/assertj/vavr/api/EitherAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/EitherShouldBeLeft.java b/src/main/java/org/assertj/vavr/api/EitherShouldBeLeft.java index 1bb43e2..92cecd4 100644 --- a/src/main/java/org/assertj/vavr/api/EitherShouldBeLeft.java +++ b/src/main/java/org/assertj/vavr/api/EitherShouldBeLeft.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/EitherShouldBeRight.java b/src/main/java/org/assertj/vavr/api/EitherShouldBeRight.java index 8208bba..00ecad1 100644 --- a/src/main/java/org/assertj/vavr/api/EitherShouldBeRight.java +++ b/src/main/java/org/assertj/vavr/api/EitherShouldBeRight.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/EitherShouldContain.java b/src/main/java/org/assertj/vavr/api/EitherShouldContain.java index ce52331..f0a0a17 100644 --- a/src/main/java/org/assertj/vavr/api/EitherShouldContain.java +++ b/src/main/java/org/assertj/vavr/api/EitherShouldContain.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/EitherShouldContainInstanceOf.java b/src/main/java/org/assertj/vavr/api/EitherShouldContainInstanceOf.java index 0c82618..3c352e5 100644 --- a/src/main/java/org/assertj/vavr/api/EitherShouldContainInstanceOf.java +++ b/src/main/java/org/assertj/vavr/api/EitherShouldContainInstanceOf.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/LazyAssert.java b/src/main/java/org/assertj/vavr/api/LazyAssert.java index ae92580..0d69adb 100644 --- a/src/main/java/org/assertj/vavr/api/LazyAssert.java +++ b/src/main/java/org/assertj/vavr/api/LazyAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/LazyShouldBeEvaluated.java b/src/main/java/org/assertj/vavr/api/LazyShouldBeEvaluated.java index e989a28..6396489 100644 --- a/src/main/java/org/assertj/vavr/api/LazyShouldBeEvaluated.java +++ b/src/main/java/org/assertj/vavr/api/LazyShouldBeEvaluated.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/LazyShouldBeNotEvaluated.java b/src/main/java/org/assertj/vavr/api/LazyShouldBeNotEvaluated.java index 9e153ec..db4ca2c 100644 --- a/src/main/java/org/assertj/vavr/api/LazyShouldBeNotEvaluated.java +++ b/src/main/java/org/assertj/vavr/api/LazyShouldBeNotEvaluated.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/MapAssert.java b/src/main/java/org/assertj/vavr/api/MapAssert.java index b50d91b..2cc573e 100644 --- a/src/main/java/org/assertj/vavr/api/MapAssert.java +++ b/src/main/java/org/assertj/vavr/api/MapAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/MultimapAssert.java b/src/main/java/org/assertj/vavr/api/MultimapAssert.java index 87141e4..606870c 100644 --- a/src/main/java/org/assertj/vavr/api/MultimapAssert.java +++ b/src/main/java/org/assertj/vavr/api/MultimapAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/OptionAssert.java b/src/main/java/org/assertj/vavr/api/OptionAssert.java index 54c4fd8..015abc9 100644 --- a/src/main/java/org/assertj/vavr/api/OptionAssert.java +++ b/src/main/java/org/assertj/vavr/api/OptionAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/OptionShouldBeEmpty.java b/src/main/java/org/assertj/vavr/api/OptionShouldBeEmpty.java index 3803b10..a991327 100644 --- a/src/main/java/org/assertj/vavr/api/OptionShouldBeEmpty.java +++ b/src/main/java/org/assertj/vavr/api/OptionShouldBeEmpty.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/OptionShouldBePresent.java b/src/main/java/org/assertj/vavr/api/OptionShouldBePresent.java index 5c5f5c8..41ee1a1 100644 --- a/src/main/java/org/assertj/vavr/api/OptionShouldBePresent.java +++ b/src/main/java/org/assertj/vavr/api/OptionShouldBePresent.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/OptionShouldContain.java b/src/main/java/org/assertj/vavr/api/OptionShouldContain.java index ef63485..737087d 100644 --- a/src/main/java/org/assertj/vavr/api/OptionShouldContain.java +++ b/src/main/java/org/assertj/vavr/api/OptionShouldContain.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/OptionShouldContainInstanceOf.java b/src/main/java/org/assertj/vavr/api/OptionShouldContainInstanceOf.java index 6a76ce3..6be35ab 100644 --- a/src/main/java/org/assertj/vavr/api/OptionShouldContainInstanceOf.java +++ b/src/main/java/org/assertj/vavr/api/OptionShouldContainInstanceOf.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/SeqAssert.java b/src/main/java/org/assertj/vavr/api/SeqAssert.java index 1ba4a4f..b9eb0db 100644 --- a/src/main/java/org/assertj/vavr/api/SeqAssert.java +++ b/src/main/java/org/assertj/vavr/api/SeqAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/SeqShouldBeAtIndex.java b/src/main/java/org/assertj/vavr/api/SeqShouldBeAtIndex.java index 3decff9..6f8f8f5 100644 --- a/src/main/java/org/assertj/vavr/api/SeqShouldBeAtIndex.java +++ b/src/main/java/org/assertj/vavr/api/SeqShouldBeAtIndex.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/SeqShouldBeSorted.java b/src/main/java/org/assertj/vavr/api/SeqShouldBeSorted.java index 0706532..062667c 100644 --- a/src/main/java/org/assertj/vavr/api/SeqShouldBeSorted.java +++ b/src/main/java/org/assertj/vavr/api/SeqShouldBeSorted.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/SeqShouldHaveAtIndex.java b/src/main/java/org/assertj/vavr/api/SeqShouldHaveAtIndex.java index f480a78..14cd9db 100644 --- a/src/main/java/org/assertj/vavr/api/SeqShouldHaveAtIndex.java +++ b/src/main/java/org/assertj/vavr/api/SeqShouldHaveAtIndex.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/SetAssert.java b/src/main/java/org/assertj/vavr/api/SetAssert.java index 9fef63e..c511a84 100644 --- a/src/main/java/org/assertj/vavr/api/SetAssert.java +++ b/src/main/java/org/assertj/vavr/api/SetAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/ShouldNotContainValues.java b/src/main/java/org/assertj/vavr/api/ShouldNotContainValues.java index 9f02b4b..98a9764 100644 --- a/src/main/java/org/assertj/vavr/api/ShouldNotContainValues.java +++ b/src/main/java/org/assertj/vavr/api/ShouldNotContainValues.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/TryAssert.java b/src/main/java/org/assertj/vavr/api/TryAssert.java index 8541ecb..e568bec 100644 --- a/src/main/java/org/assertj/vavr/api/TryAssert.java +++ b/src/main/java/org/assertj/vavr/api/TryAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/TryShouldBeFailure.java b/src/main/java/org/assertj/vavr/api/TryShouldBeFailure.java index dd5344e..72f7772 100644 --- a/src/main/java/org/assertj/vavr/api/TryShouldBeFailure.java +++ b/src/main/java/org/assertj/vavr/api/TryShouldBeFailure.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/TryShouldBeSuccess.java b/src/main/java/org/assertj/vavr/api/TryShouldBeSuccess.java index bb0e6b5..4e60cea 100644 --- a/src/main/java/org/assertj/vavr/api/TryShouldBeSuccess.java +++ b/src/main/java/org/assertj/vavr/api/TryShouldBeSuccess.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/TryShouldContain.java b/src/main/java/org/assertj/vavr/api/TryShouldContain.java index e78e4d3..e323ebd 100644 --- a/src/main/java/org/assertj/vavr/api/TryShouldContain.java +++ b/src/main/java/org/assertj/vavr/api/TryShouldContain.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/TryShouldContainInstanceOf.java b/src/main/java/org/assertj/vavr/api/TryShouldContainInstanceOf.java index 1a45281..e2a859f 100644 --- a/src/main/java/org/assertj/vavr/api/TryShouldContainInstanceOf.java +++ b/src/main/java/org/assertj/vavr/api/TryShouldContainInstanceOf.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/ValidationAssert.java b/src/main/java/org/assertj/vavr/api/ValidationAssert.java index 50e6c6e..3886f1a 100644 --- a/src/main/java/org/assertj/vavr/api/ValidationAssert.java +++ b/src/main/java/org/assertj/vavr/api/ValidationAssert.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/ValidationShouldBeInvalid.java b/src/main/java/org/assertj/vavr/api/ValidationShouldBeInvalid.java index cc67305..c2ece64 100644 --- a/src/main/java/org/assertj/vavr/api/ValidationShouldBeInvalid.java +++ b/src/main/java/org/assertj/vavr/api/ValidationShouldBeInvalid.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/ValidationShouldBeValid.java b/src/main/java/org/assertj/vavr/api/ValidationShouldBeValid.java index e1b9798..d88f477 100644 --- a/src/main/java/org/assertj/vavr/api/ValidationShouldBeValid.java +++ b/src/main/java/org/assertj/vavr/api/ValidationShouldBeValid.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/ValidationShouldContain.java b/src/main/java/org/assertj/vavr/api/ValidationShouldContain.java index 7b9b683..eea93cb 100644 --- a/src/main/java/org/assertj/vavr/api/ValidationShouldContain.java +++ b/src/main/java/org/assertj/vavr/api/ValidationShouldContain.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/ValidationShouldContainInstanceOf.java b/src/main/java/org/assertj/vavr/api/ValidationShouldContainInstanceOf.java index f5a5be5..342acce 100644 --- a/src/main/java/org/assertj/vavr/api/ValidationShouldContainInstanceOf.java +++ b/src/main/java/org/assertj/vavr/api/ValidationShouldContainInstanceOf.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/VavrAssertions.java b/src/main/java/org/assertj/vavr/api/VavrAssertions.java index 1389e3b..7321ac7 100644 --- a/src/main/java/org/assertj/vavr/api/VavrAssertions.java +++ b/src/main/java/org/assertj/vavr/api/VavrAssertions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/VavrAssumptions.java b/src/main/java/org/assertj/vavr/api/VavrAssumptions.java index f13fdf1..198220e 100644 --- a/src/main/java/org/assertj/vavr/api/VavrAssumptions.java +++ b/src/main/java/org/assertj/vavr/api/VavrAssumptions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/VavrInstanceOfAssertFactories.java b/src/main/java/org/assertj/vavr/api/VavrInstanceOfAssertFactories.java index c0674d0..997a611 100644 --- a/src/main/java/org/assertj/vavr/api/VavrInstanceOfAssertFactories.java +++ b/src/main/java/org/assertj/vavr/api/VavrInstanceOfAssertFactories.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/main/java/org/assertj/vavr/api/soft/AutoCloseableSoftVavrAssertions.java b/src/main/java/org/assertj/vavr/api/soft/AutoCloseableSoftVavrAssertions.java index 6a5f257..a3c233a 100644 --- a/src/main/java/org/assertj/vavr/api/soft/AutoCloseableSoftVavrAssertions.java +++ b/src/main/java/org/assertj/vavr/api/soft/AutoCloseableSoftVavrAssertions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api.soft; diff --git a/src/main/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertions.java b/src/main/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertions.java index 088b9ea..23f6692 100644 --- a/src/main/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertions.java +++ b/src/main/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api.soft; diff --git a/src/main/java/org/assertj/vavr/api/soft/SoftVavrAssertions.java b/src/main/java/org/assertj/vavr/api/soft/SoftVavrAssertions.java index 1ed93b2..84f4957 100644 --- a/src/main/java/org/assertj/vavr/api/soft/SoftVavrAssertions.java +++ b/src/main/java/org/assertj/vavr/api/soft/SoftVavrAssertions.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api.soft; diff --git a/src/main/java/org/assertj/vavr/api/soft/StandardSoftVavrAssertionsProvider.java b/src/main/java/org/assertj/vavr/api/soft/StandardSoftVavrAssertionsProvider.java index 9afc304..724175e 100644 --- a/src/main/java/org/assertj/vavr/api/soft/StandardSoftVavrAssertionsProvider.java +++ b/src/main/java/org/assertj/vavr/api/soft/StandardSoftVavrAssertionsProvider.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api.soft; diff --git a/src/main/java/org/assertj/vavr/internal/Maps.java b/src/main/java/org/assertj/vavr/internal/Maps.java index 7c44456..8576b63 100644 --- a/src/main/java/org/assertj/vavr/internal/Maps.java +++ b/src/main/java/org/assertj/vavr/internal/Maps.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.internal; diff --git a/src/main/java/org/assertj/vavr/internal/Multimaps.java b/src/main/java/org/assertj/vavr/internal/Multimaps.java index 1fff58e..cc9e8b2 100644 --- a/src/main/java/org/assertj/vavr/internal/Multimaps.java +++ b/src/main/java/org/assertj/vavr/internal/Multimaps.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.internal; diff --git a/src/test/java/org/assertj/vavr/api/AssumptionRunner.java b/src/test/java/org/assertj/vavr/api/AssumptionRunner.java index 5917cb5..88eb23d 100644 --- a/src/test/java/org/assertj/vavr/api/AssumptionRunner.java +++ b/src/test/java/org/assertj/vavr/api/AssumptionRunner.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/BaseAssumptionRunner.java b/src/test/java/org/assertj/vavr/api/BaseAssumptionRunner.java index aba74c7..e1a43c8 100644 --- a/src/test/java/org/assertj/vavr/api/BaseAssumptionRunner.java +++ b/src/test/java/org/assertj/vavr/api/BaseAssumptionRunner.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/BaseAssumptionsTest.java b/src/test/java/org/assertj/vavr/api/BaseAssumptionsTest.java index 2c5314a..18bd146 100644 --- a/src/test/java/org/assertj/vavr/api/BaseAssumptionsTest.java +++ b/src/test/java/org/assertj/vavr/api/BaseAssumptionsTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeftInstanceOf_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeftInstanceOf_Test.java index f370a8f..ab9d99c 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeftInstanceOf_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeftInstanceOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeftSame_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeftSame_Test.java index b23131b..eef23b3 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeftSame_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeftSame_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeft_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeft_Test.java index 672b83f..fe70c37 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeft_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsLeft_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnLeft_usingFieldByFieldValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnLeft_usingFieldByFieldValueComparator_Test.java index 67d966e..9b95234 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnLeft_usingFieldByFieldValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnLeft_usingFieldByFieldValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnLeft_usingValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnLeft_usingValueComparator_Test.java index 0a073e5..2473f96 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnLeft_usingValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnLeft_usingValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnRight_usingFieldByFieldValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnRight_usingFieldByFieldValueComparator_Test.java index b2e4119..7f06b29 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnRight_usingFieldByFieldValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnRight_usingFieldByFieldValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnRight_usingValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnRight_usingValueComparator_Test.java index 10669dc..fb2ba25 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnRight_usingValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsOnRight_usingValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsRightInstanceOf_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsRightInstanceOf_Test.java index a2fe5ba..01e1f6d 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsRightInstanceOf_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsRightInstanceOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsRightSame_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsRightSame_Test.java index 0323f9f..cb38818 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsRightSame_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsRightSame_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_containsRight_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_containsRight_Test.java index 22cc572..965abc3 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_containsRight_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_containsRight_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_hasLeftValueSatisfying_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_hasLeftValueSatisfying_Test.java index 6b04365..3eec515 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_hasLeftValueSatisfying_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_hasLeftValueSatisfying_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_hasRightValueSatisfying_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_hasRightValueSatisfying_Test.java index 0b4b8ed..2d58ef4 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_hasRightValueSatisfying_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_hasRightValueSatisfying_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_isLeft_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_isLeft_Test.java index 7391dac..3f6bf64 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_isLeft_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_isLeft_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/EitherAssert_isRight_Test.java b/src/test/java/org/assertj/vavr/api/EitherAssert_isRight_Test.java index 6394716..cbaee0c 100644 --- a/src/test/java/org/assertj/vavr/api/EitherAssert_isRight_Test.java +++ b/src/test/java/org/assertj/vavr/api/EitherAssert_isRight_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/Either_assertion_methods_in_assumptions_Test.java b/src/test/java/org/assertj/vavr/api/Either_assertion_methods_in_assumptions_Test.java index 4aa7fa0..42bf8fa 100644 --- a/src/test/java/org/assertj/vavr/api/Either_assertion_methods_in_assumptions_Test.java +++ b/src/test/java/org/assertj/vavr/api/Either_assertion_methods_in_assumptions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/LazyAssert_isEvaluated_Test.java b/src/test/java/org/assertj/vavr/api/LazyAssert_isEvaluated_Test.java index de29e4b..cc0b11d 100644 --- a/src/test/java/org/assertj/vavr/api/LazyAssert_isEvaluated_Test.java +++ b/src/test/java/org/assertj/vavr/api/LazyAssert_isEvaluated_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/LazyAssert_isNotEvaluated_Test.java b/src/test/java/org/assertj/vavr/api/LazyAssert_isNotEvaluated_Test.java index 640fd1f..f6cdfc6 100644 --- a/src/test/java/org/assertj/vavr/api/LazyAssert_isNotEvaluated_Test.java +++ b/src/test/java/org/assertj/vavr/api/LazyAssert_isNotEvaluated_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/Lazy_assertion_methods_in_assumptions_Test.java b/src/test/java/org/assertj/vavr/api/Lazy_assertion_methods_in_assumptions_Test.java index 51a779a..138aa74 100644 --- a/src/test/java/org/assertj/vavr/api/Lazy_assertion_methods_in_assumptions_Test.java +++ b/src/test/java/org/assertj/vavr/api/Lazy_assertion_methods_in_assumptions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_allSatisfy_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_allSatisfy_Test.java index 7a7bf1b..ea43c75 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_allSatisfy_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_allSatisfy_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_containsAllEntriesOf_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_containsAllEntriesOf_Test.java index 79d6c1f..d765b80 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_containsAllEntriesOf_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_containsAllEntriesOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_containsEntry_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_containsEntry_Test.java index ace57fc..b2932ff 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_containsEntry_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_containsEntry_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_containsExactly_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_containsExactly_Test.java index 411498f..c092c9f 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_containsExactly_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_containsExactly_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_containsKey_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_containsKey_Test.java index 3ab40ae..a8e9123 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_containsKey_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_containsKey_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_containsKeys_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_containsKeys_Test.java index c5a8650..c3d35a1 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_containsKeys_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_containsKeys_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_containsOnlyKeys_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_containsOnlyKeys_Test.java index a4d31e5..9bf29cf 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_containsOnlyKeys_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_containsOnlyKeys_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_containsOnly_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_containsOnly_Test.java index f34b868..b052b2e 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_containsOnly_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_containsOnly_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_containsValue_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_containsValue_Test.java index cd06f50..7e82925 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_containsValue_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_containsValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_containsValues_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_containsValues_Test.java index 7ec36b0..c4d9d03 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_containsValues_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_containsValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_contains_anyOf_entries_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_contains_anyOf_entries_Test.java index eadecc3..56d1147 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_contains_anyOf_entries_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_contains_anyOf_entries_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_contains_entries_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_contains_entries_Test.java index ec36ba0..be00789 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_contains_entries_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_contains_entries_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainEntry_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainEntry_Test.java index ced591d..03c430f 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainEntry_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainEntry_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainKey_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainKey_Test.java index 5d3348b..ed5eced 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainKey_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainKey_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainKeys_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainKeys_Test.java index c7b19dc..1ec5505 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainKeys_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainKeys_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainValue_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainValue_Test.java index dc082ad..48e52df 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainValue_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainValues_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainValues_Test.java index b74fe9a..832b93f 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainValues_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContainValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContain_entries_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContain_entries_Test.java index 950adc5..7c3e7a7 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContain_entries_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_doesNotContain_entries_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_hasEntrySatisfying_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_hasEntrySatisfying_Test.java index e4a9ab7..1c53b2d 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_hasEntrySatisfying_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_hasEntrySatisfying_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_hasSameSizeAs_Array_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_hasSameSizeAs_Array_Test.java index c4fe1ed..5215a25 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_hasSameSizeAs_Array_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_hasSameSizeAs_Array_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_hasSameSizeAs_Iterable_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_hasSameSizeAs_Iterable_Test.java index e9dd05d..744b311 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_hasSameSizeAs_Iterable_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_hasSameSizeAs_Iterable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_hasSizeGreaterThan_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_hasSizeGreaterThan_Test.java index 6d1ad43..5c70ed2 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_hasSizeGreaterThan_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_hasSizeGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_hasSizeLessThan_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_hasSizeLessThan_Test.java index 88a3cb5..f663e90 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_hasSizeLessThan_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_hasSizeLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_hasSize_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_hasSize_Test.java index b61db03..15fdabb 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_hasSize_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_hasSize_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_isEmpty_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_isEmpty_Test.java index e823d7f..a75f0fd 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_isEmpty_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_isEmpty_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_isEqualTo_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_isEqualTo_Test.java index 97d376e..7b8672f 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_isEqualTo_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_isEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_isNotEmpty_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_isNotEmpty_Test.java index ff72522..8aa9c1e 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_isNotEmpty_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_isNotEmpty_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_isNotEqualTo_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_isNotEqualTo_Test.java index 6f9ff61..9edea7d 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_isNotEqualTo_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_isNotEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MapAssert_isNullOrEmpty_Test.java b/src/test/java/org/assertj/vavr/api/MapAssert_isNullOrEmpty_Test.java index bb3e167..7218c3f 100644 --- a/src/test/java/org/assertj/vavr/api/MapAssert_isNullOrEmpty_Test.java +++ b/src/test/java/org/assertj/vavr/api/MapAssert_isNullOrEmpty_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/Map_assertion_methods_in_assumptions_Test.java b/src/test/java/org/assertj/vavr/api/Map_assertion_methods_in_assumptions_Test.java index 3fdad07..a05f4d1 100644 --- a/src/test/java/org/assertj/vavr/api/Map_assertion_methods_in_assumptions_Test.java +++ b/src/test/java/org/assertj/vavr/api/Map_assertion_methods_in_assumptions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultiMapAssert_isEqualTo_Test.java b/src/test/java/org/assertj/vavr/api/MultiMapAssert_isEqualTo_Test.java index e605948..d63ec86 100644 --- a/src/test/java/org/assertj/vavr/api/MultiMapAssert_isEqualTo_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultiMapAssert_isEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultiMapAssert_isNotEqualTo_Test.java b/src/test/java/org/assertj/vavr/api/MultiMapAssert_isNotEqualTo_Test.java index 4dace77..979caa9 100644 --- a/src/test/java/org/assertj/vavr/api/MultiMapAssert_isNotEqualTo_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultiMapAssert_isNotEqualTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_allSatisfy_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_allSatisfy_Test.java index 0721ac2..a924ff5 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_allSatisfy_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_allSatisfy_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsAllEntriesOf_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsAllEntriesOf_Test.java index ba68eb6..8fd89f9 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsAllEntriesOf_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsAllEntriesOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsEntry_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsEntry_Test.java index 4c69dc9..2f33e27 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsEntry_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsEntry_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsExactly_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsExactly_Test.java index 837a3c2..646c707 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsExactly_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsExactly_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsKey_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsKey_Test.java index 4ff435e..09f430d 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsKey_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsKey_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsKeys_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsKeys_Test.java index f320785..b4d09e4 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsKeys_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsKeys_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsOnlyKeys_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsOnlyKeys_Test.java index 3ff4095..ca2928d 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsOnlyKeys_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsOnlyKeys_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsOnly_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsOnly_Test.java index 5d5f9c1..5c2136b 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsOnly_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsOnly_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsValue_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsValue_Test.java index e48d73e..0cbfbd7 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsValue_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsValues_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsValues_Test.java index 941b72f..ddf54ea 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_containsValues_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_containsValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_contains_anyOf_entries_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_contains_anyOf_entries_Test.java index 22557d0..db87121 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_contains_anyOf_entries_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_contains_anyOf_entries_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_contains_entries_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_contains_entries_Test.java index fe70e15..af2dff1 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_contains_entries_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_contains_entries_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainEntry_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainEntry_Test.java index 166c27d..5596d38 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainEntry_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainEntry_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainKey_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainKey_Test.java index 8fbcbb0..678481f 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainKey_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainKey_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainKeys_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainKeys_Test.java index c9af217..3206621 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainKeys_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainKeys_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainValue_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainValue_Test.java index 6ab8961..a3d400c 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainValue_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainValue_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainValues_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainValues_Test.java index 3aec81f..f7ed635 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainValues_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContainValues_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContain_entries_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContain_entries_Test.java index 2cbf024..cbbbd8e 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContain_entries_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_doesNotContain_entries_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasEntrySatisfying_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasEntrySatisfying_Test.java index 16d3e0c..c76b035 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasEntrySatisfying_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasEntrySatisfying_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSameSizeAs_Array_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSameSizeAs_Array_Test.java index e38e88f..d86b70b 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSameSizeAs_Array_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSameSizeAs_Array_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSameSizeAs_Iterable_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSameSizeAs_Iterable_Test.java index e62e2a9..b02d76c 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSameSizeAs_Iterable_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSameSizeAs_Iterable_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSizeGreaterThan_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSizeGreaterThan_Test.java index 1315887..49c36ec 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSizeGreaterThan_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSizeGreaterThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSizeLessThan_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSizeLessThan_Test.java index 293bc3d..21e4cf6 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSizeLessThan_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSizeLessThan_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSize_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSize_Test.java index 8b1bffd..2a577c8 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSize_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_hasSize_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_isEmpty_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_isEmpty_Test.java index c2b0be1..f78de3d 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_isEmpty_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_isEmpty_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_isNotEmpty_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_isNotEmpty_Test.java index 92044f9..ae40846 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_isNotEmpty_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_isNotEmpty_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/MultimapAssert_isNullOrEmpty_Test.java b/src/test/java/org/assertj/vavr/api/MultimapAssert_isNullOrEmpty_Test.java index 2b7fbc7..6b9925d 100644 --- a/src/test/java/org/assertj/vavr/api/MultimapAssert_isNullOrEmpty_Test.java +++ b/src/test/java/org/assertj/vavr/api/MultimapAssert_isNullOrEmpty_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/Multimap_assertion_methods_in_assumptions_Test.java b/src/test/java/org/assertj/vavr/api/Multimap_assertion_methods_in_assumptions_Test.java index 9837b46..a4eefbc 100644 --- a/src/test/java/org/assertj/vavr/api/Multimap_assertion_methods_in_assumptions_Test.java +++ b/src/test/java/org/assertj/vavr/api/Multimap_assertion_methods_in_assumptions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_containsInstanceOf_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_containsInstanceOf_Test.java index 15845c9..549b38f 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_containsInstanceOf_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_containsInstanceOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_containsSame_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_containsSame_Test.java index 0f8a36d..225e405 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_containsSame_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_containsSame_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_contains_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_contains_Test.java index eae0309..3f1cdbd 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_contains_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_contains_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_contains_usingFieldByFieldValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_contains_usingFieldByFieldValueComparator_Test.java index c4f7536..dfe4032 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_contains_usingFieldByFieldValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_contains_usingFieldByFieldValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_contains_usingValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_contains_usingValueComparator_Test.java index e8498af..91fe869 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_contains_usingValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_contains_usingValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_flatMap_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_flatMap_Test.java index a7544e6..1983e7b 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_flatMap_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_flatMap_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_hasValueSatisfying_Condition_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_hasValueSatisfying_Condition_Test.java index 2242c6e..72425dc 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_hasValueSatisfying_Condition_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_hasValueSatisfying_Condition_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_hasValueSatisfying_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_hasValueSatisfying_Test.java index 229694e..a860ca3 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_hasValueSatisfying_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_hasValueSatisfying_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_isDefined_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_isDefined_Test.java index 38efc12..8c41a03 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_isDefined_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_isDefined_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_isEmpty_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_isEmpty_Test.java index c25e89a..db21680 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_isEmpty_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_isEmpty_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/OptionAssert_map_Test.java b/src/test/java/org/assertj/vavr/api/OptionAssert_map_Test.java index 2b3bf9b..19a04c3 100644 --- a/src/test/java/org/assertj/vavr/api/OptionAssert_map_Test.java +++ b/src/test/java/org/assertj/vavr/api/OptionAssert_map_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/Option_assertion_methods_in_assumptions_Test.java b/src/test/java/org/assertj/vavr/api/Option_assertion_methods_in_assumptions_Test.java index 1862f3d..730f44a 100644 --- a/src/test/java/org/assertj/vavr/api/Option_assertion_methods_in_assumptions_Test.java +++ b/src/test/java/org/assertj/vavr/api/Option_assertion_methods_in_assumptions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SeqAssert_containsExactly_inAnyOrder_Test.java b/src/test/java/org/assertj/vavr/api/SeqAssert_containsExactly_inAnyOrder_Test.java index a8c89aa..5a79979 100644 --- a/src/test/java/org/assertj/vavr/api/SeqAssert_containsExactly_inAnyOrder_Test.java +++ b/src/test/java/org/assertj/vavr/api/SeqAssert_containsExactly_inAnyOrder_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SeqAssert_contains_atIndex_Test.java b/src/test/java/org/assertj/vavr/api/SeqAssert_contains_atIndex_Test.java index bfd0b96..80e04b8 100644 --- a/src/test/java/org/assertj/vavr/api/SeqAssert_contains_atIndex_Test.java +++ b/src/test/java/org/assertj/vavr/api/SeqAssert_contains_atIndex_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SeqAssert_doesNotContain_atIndex_Test.java b/src/test/java/org/assertj/vavr/api/SeqAssert_doesNotContain_atIndex_Test.java index 5fcf2a8..befee4f 100644 --- a/src/test/java/org/assertj/vavr/api/SeqAssert_doesNotContain_atIndex_Test.java +++ b/src/test/java/org/assertj/vavr/api/SeqAssert_doesNotContain_atIndex_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SeqAssert_has_atIndex_Test.java b/src/test/java/org/assertj/vavr/api/SeqAssert_has_atIndex_Test.java index e8c52c5..93d52b9 100644 --- a/src/test/java/org/assertj/vavr/api/SeqAssert_has_atIndex_Test.java +++ b/src/test/java/org/assertj/vavr/api/SeqAssert_has_atIndex_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SeqAssert_isSortedAccordingTo_Test.java b/src/test/java/org/assertj/vavr/api/SeqAssert_isSortedAccordingTo_Test.java index a7f1935..82c8f39 100644 --- a/src/test/java/org/assertj/vavr/api/SeqAssert_isSortedAccordingTo_Test.java +++ b/src/test/java/org/assertj/vavr/api/SeqAssert_isSortedAccordingTo_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SeqAssert_isSorted_Test.java b/src/test/java/org/assertj/vavr/api/SeqAssert_isSorted_Test.java index 8b6febe..7b56638 100644 --- a/src/test/java/org/assertj/vavr/api/SeqAssert_isSorted_Test.java +++ b/src/test/java/org/assertj/vavr/api/SeqAssert_isSorted_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SeqAssert_is_atIndex_Test.java b/src/test/java/org/assertj/vavr/api/SeqAssert_is_atIndex_Test.java index 528d46f..4e55d46 100644 --- a/src/test/java/org/assertj/vavr/api/SeqAssert_is_atIndex_Test.java +++ b/src/test/java/org/assertj/vavr/api/SeqAssert_is_atIndex_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SeqAssert_satisfies_atIndex_Test.java b/src/test/java/org/assertj/vavr/api/SeqAssert_satisfies_atIndex_Test.java index 9ec815e..a56bfd0 100644 --- a/src/test/java/org/assertj/vavr/api/SeqAssert_satisfies_atIndex_Test.java +++ b/src/test/java/org/assertj/vavr/api/SeqAssert_satisfies_atIndex_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/Seq_assertion_methods_in_assumptions_Test.java b/src/test/java/org/assertj/vavr/api/Seq_assertion_methods_in_assumptions_Test.java index 6378d2a..ad33749 100644 --- a/src/test/java/org/assertj/vavr/api/Seq_assertion_methods_in_assumptions_Test.java +++ b/src/test/java/org/assertj/vavr/api/Seq_assertion_methods_in_assumptions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SetAssert_allSatisfy_Test.java b/src/test/java/org/assertj/vavr/api/SetAssert_allSatisfy_Test.java index 992e61e..a2fb04e 100644 --- a/src/test/java/org/assertj/vavr/api/SetAssert_allSatisfy_Test.java +++ b/src/test/java/org/assertj/vavr/api/SetAssert_allSatisfy_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SetAssert_hasSize_Test.java b/src/test/java/org/assertj/vavr/api/SetAssert_hasSize_Test.java index 0d2d9c8..21d733e 100644 --- a/src/test/java/org/assertj/vavr/api/SetAssert_hasSize_Test.java +++ b/src/test/java/org/assertj/vavr/api/SetAssert_hasSize_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/SetAssert_isEmpty_Test.java b/src/test/java/org/assertj/vavr/api/SetAssert_isEmpty_Test.java index 799a630..2683b89 100644 --- a/src/test/java/org/assertj/vavr/api/SetAssert_isEmpty_Test.java +++ b/src/test/java/org/assertj/vavr/api/SetAssert_isEmpty_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/Set_assertion_methods_in_assumptions_Test.java b/src/test/java/org/assertj/vavr/api/Set_assertion_methods_in_assumptions_Test.java index 624178a..59a3ad8 100644 --- a/src/test/java/org/assertj/vavr/api/Set_assertion_methods_in_assumptions_Test.java +++ b/src/test/java/org/assertj/vavr/api/Set_assertion_methods_in_assumptions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TestCondition.java b/src/test/java/org/assertj/vavr/api/TestCondition.java index 7cb9e43..4b99a64 100644 --- a/src/test/java/org/assertj/vavr/api/TestCondition.java +++ b/src/test/java/org/assertj/vavr/api/TestCondition.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_containsInstanceOf_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_containsInstanceOf_Test.java index 78042d8..e7fb25b 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_containsInstanceOf_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_containsInstanceOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_containsSame_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_containsSame_Test.java index 8f29fa0..9036162 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_containsSame_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_containsSame_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_contains_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_contains_Test.java index 9f98a3e..2464489 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_contains_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_contains_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_contains_usingFieldByFieldValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_contains_usingFieldByFieldValueComparator_Test.java index fec4943..71fe2d6 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_contains_usingFieldByFieldValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_contains_usingFieldByFieldValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_contains_usingValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_contains_usingValueComparator_Test.java index fb69c6b..6a5d2aa 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_contains_usingValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_contains_usingValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_failBecauseOf_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_failBecauseOf_Test.java index c1abae8..e6f3e17 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_failBecauseOf_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_failBecauseOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_failReasonHasMessage_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_failReasonHasMessage_Test.java index 145d56e..861475b 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_failReasonHasMessage_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_failReasonHasMessage_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_hasValueSatisfying_Condition_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_hasValueSatisfying_Condition_Test.java index 3ea09d1..86185cc 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_hasValueSatisfying_Condition_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_hasValueSatisfying_Condition_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_hasValueSatisfying_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_hasValueSatisfying_Test.java index f039851..7a8f891 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_hasValueSatisfying_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_hasValueSatisfying_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_isFailure_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_isFailure_Test.java index b9f56c0..8457eba 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_isFailure_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_isFailure_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/TryAssert_isSuccess_Test.java b/src/test/java/org/assertj/vavr/api/TryAssert_isSuccess_Test.java index 9ec5ce1..9c3b853 100644 --- a/src/test/java/org/assertj/vavr/api/TryAssert_isSuccess_Test.java +++ b/src/test/java/org/assertj/vavr/api/TryAssert_isSuccess_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/Try_assertion_methods_in_assumptions_Test.java b/src/test/java/org/assertj/vavr/api/Try_assertion_methods_in_assumptions_Test.java index 54767b8..c16ad53 100644 --- a/src/test/java/org/assertj/vavr/api/Try_assertion_methods_in_assumptions_Test.java +++ b/src/test/java/org/assertj/vavr/api/Try_assertion_methods_in_assumptions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidInstanceOf_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidInstanceOf_Test.java index 12a8427..07bd1f0 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidInstanceOf_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidInstanceOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSame_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSame_Test.java index 20ef6f8..194d409 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSame_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSame_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSatisfying_Condition_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSatisfying_Condition_Test.java index 7a237d3..e109daf 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSatisfying_Condition_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSatisfying_Condition_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSatisfying_Consumer_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSatisfying_Consumer_Test.java index 787c398..235231a 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSatisfying_Consumer_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalidSatisfying_Consumer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_Test.java index e03d582..c142fe6 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_usingFieldByFieldValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_usingFieldByFieldValueComparator_Test.java index c1f7ebd..89c3997 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_usingFieldByFieldValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_usingFieldByFieldValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_usingValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_usingValueComparator_Test.java index bf5acb6..eb39dad 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_usingValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsInvalid_usingValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidInstanceOf_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidInstanceOf_Test.java index 03b9981..14b5136 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidInstanceOf_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidInstanceOf_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSame_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSame_Test.java index dcd1f89..d476df2 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSame_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSame_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSatisfying_Condition_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSatisfying_Condition_Test.java index b0402a2..f13d653 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSatisfying_Condition_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSatisfying_Condition_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSatisfying_Consumer_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSatisfying_Consumer_Test.java index 3016137..819a1d1 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSatisfying_Consumer_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValidSatisfying_Consumer_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_Test.java index d3231bd..b9c5e10 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_usingFieldByFieldValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_usingFieldByFieldValueComparator_Test.java index 0e93da6..05dffea 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_usingFieldByFieldValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_usingFieldByFieldValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_usingValueComparator_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_usingValueComparator_Test.java index ba6c35b..de3003b 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_usingValueComparator_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_containsValid_usingValueComparator_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_isInvalid_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_isInvalid_Test.java index 696a4ec..ec56d50 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_isInvalid_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_isInvalid_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/ValidationAssert_isValid_Test.java b/src/test/java/org/assertj/vavr/api/ValidationAssert_isValid_Test.java index 013c27a..87fca8c 100644 --- a/src/test/java/org/assertj/vavr/api/ValidationAssert_isValid_Test.java +++ b/src/test/java/org/assertj/vavr/api/ValidationAssert_isValid_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/Validation_assertion_methods_in_assumptions_Test.java b/src/test/java/org/assertj/vavr/api/Validation_assertion_methods_in_assumptions_Test.java index d40731c..31fa481 100644 --- a/src/test/java/org/assertj/vavr/api/Validation_assertion_methods_in_assumptions_Test.java +++ b/src/test/java/org/assertj/vavr/api/Validation_assertion_methods_in_assumptions_Test.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/VavrInstanceOfAssertFactoriesTest.java b/src/test/java/org/assertj/vavr/api/VavrInstanceOfAssertFactoriesTest.java index ef7c569..aa40b4d 100644 --- a/src/test/java/org/assertj/vavr/api/VavrInstanceOfAssertFactoriesTest.java +++ b/src/test/java/org/assertj/vavr/api/VavrInstanceOfAssertFactoriesTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api; diff --git a/src/test/java/org/assertj/vavr/api/soft/AutoCloseableSoftVavrAssertionsTest.java b/src/test/java/org/assertj/vavr/api/soft/AutoCloseableSoftVavrAssertionsTest.java index f8a51b1..365dde2 100644 --- a/src/test/java/org/assertj/vavr/api/soft/AutoCloseableSoftVavrAssertionsTest.java +++ b/src/test/java/org/assertj/vavr/api/soft/AutoCloseableSoftVavrAssertionsTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api.soft; diff --git a/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsFailureTest.java b/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsFailureTest.java index 6c44943..f3a690d 100644 --- a/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsFailureTest.java +++ b/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsFailureTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api.soft; diff --git a/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsSuccessTest.java b/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsSuccessTest.java index 79bbffe..1b8f048 100644 --- a/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsSuccessTest.java +++ b/src/test/java/org/assertj/vavr/api/soft/JUnitSoftVavrAssertionsSuccessTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api.soft; diff --git a/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsHelper.java b/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsHelper.java index f43a797..edccc20 100644 --- a/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsHelper.java +++ b/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsHelper.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api.soft; diff --git a/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsTest.java b/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsTest.java index 53e7f55..2dfd99a 100644 --- a/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsTest.java +++ b/src/test/java/org/assertj/vavr/api/soft/SoftVavrAssertionsTest.java @@ -8,7 +8,7 @@ * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * - * Copyright 2017-2024 the original author or authors. + * Copyright 2017-2025 the original author or authors. */ package org.assertj.vavr.api.soft;