Skip to content

Commit 0d51c05

Browse files
mchmielarzdependabot[bot]pivovarit
authored
Adds support of soft assertions (#133)
Adds SoftAssertions support Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Grzegorz Piwowarek <[email protected]>
1 parent 232f807 commit 0d51c05

File tree

189 files changed

+1093
-180
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+1093
-180
lines changed

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,11 @@
125125
<scope>provided</scope>
126126
<optional>true</optional>
127127
</dependency>
128+
<dependency>
129+
<groupId>org.mockito</groupId>
130+
<artifactId>mockito-core</artifactId>
131+
<scope>test</scope>
132+
</dependency>
128133
</dependencies>
129134

130135
<build>

src/main/java/org/assertj/vavr/api/AbstractEitherAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
99
* specific language governing permissions and limitations under the License.
1010
*
11-
* Copyright 2017-2020 the original author or authors.
11+
* Copyright 2017-2021 the original author or authors.
1212
*/
1313
package org.assertj.vavr.api;
1414

src/main/java/org/assertj/vavr/api/AbstractLazyAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
99
* specific language governing permissions and limitations under the License.
1010
*
11-
* Copyright 2017-2020 the original author or authors.
11+
* Copyright 2017-2021 the original author or authors.
1212
*/
1313
package org.assertj.vavr.api;
1414

src/main/java/org/assertj/vavr/api/AbstractMapAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
99
* specific language governing permissions and limitations under the License.
1010
*
11-
* Copyright 2017-2020 the original author or authors.
11+
* Copyright 2017-2021 the original author or authors.
1212
*/
1313
package org.assertj.vavr.api;
1414

src/main/java/org/assertj/vavr/api/AbstractMultimapAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
99
* specific language governing permissions and limitations under the License.
1010
*
11-
* Copyright 2017-2020 the original author or authors.
11+
* Copyright 2017-2021 the original author or authors.
1212
*/
1313
package org.assertj.vavr.api;
1414

src/main/java/org/assertj/vavr/api/AbstractOptionAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
99
* specific language governing permissions and limitations under the License.
1010
*
11-
* Copyright 2017-2020 the original author or authors.
11+
* Copyright 2017-2021 the original author or authors.
1212
*/
1313
package org.assertj.vavr.api;
1414

src/main/java/org/assertj/vavr/api/AbstractSeqAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
99
* specific language governing permissions and limitations under the License.
1010
*
11-
* Copyright 2017-2020 the original author or authors.
11+
* Copyright 2017-2021 the original author or authors.
1212
*/
1313
package org.assertj.vavr.api;
1414

src/main/java/org/assertj/vavr/api/AbstractSetAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
99
* specific language governing permissions and limitations under the License.
1010
*
11-
* Copyright 2017-2020 the original author or authors.
11+
* Copyright 2017-2021 the original author or authors.
1212
*/
1313
package org.assertj.vavr.api;
1414

src/main/java/org/assertj/vavr/api/AbstractTraversableAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
99
* specific language governing permissions and limitations under the License.
1010
*
11-
* Copyright 2017-2020 the original author or authors.
11+
* Copyright 2017-2021 the original author or authors.
1212
*/
1313
package org.assertj.vavr.api;
1414

src/main/java/org/assertj/vavr/api/AbstractTryAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
99
* specific language governing permissions and limitations under the License.
1010
*
11-
* Copyright 2017-2020 the original author or authors.
11+
* Copyright 2017-2021 the original author or authors.
1212
*/
1313
package org.assertj.vavr.api;
1414

0 commit comments

Comments
 (0)