This is an automated email from the ASF dual-hosted git repository. ahuber pushed a commit to branch spring6 in repository https://gitbox.apache.org/repos/asf/isis.git
commit 300e6071780f8ab868e20107d611be43c74a46b7 Merge: 48984176cc 0d91b6d94b Author: Andi Huber <[email protected]> AuthorDate: Mon Nov 14 16:35:22 2022 +0100 ISIS-3275: migrate RO applib to JUnit5 viewers/restfulobjects/applib/pom.xml | 2 +- ...resentationTest_arrayGet_arraySetElementAt.java | 51 ++++++++++++--------- .../JsonRepresentationTest_asInputStream.java | 8 ++-- .../applib/JsonRepresentationTest_getArray.java | 10 ++--- .../JsonRepresentationTest_getBigDecimal.java | 51 +++++++++++---------- .../JsonRepresentationTest_getBigInteger.java | 52 +++++++++++----------- .../applib/JsonRepresentationTest_getBoolean.java | 10 ++--- .../applib/JsonRepresentationTest_getDouble.java | 15 +++---- .../applib/JsonRepresentationTest_getInt.java | 10 ++--- .../JsonRepresentationTest_getLink_isLink.java | 10 ++--- .../applib/JsonRepresentationTest_getLong.java | 10 ++--- .../JsonRepresentationTest_getNull_isNull.java | 10 ++--- .../JsonRepresentationTest_getRepresentation.java | 8 ++-- .../JsonRepresentationTest_getString_isString.java | 10 ++--- ...onRepresentationTest_isArray_isMap_isValue.java | 8 ++-- .../applib/JsonRepresentationTest_mapHas.java | 14 +++--- .../applib/JsonRepresentationTest_newArray.java | 4 +- .../applib/JsonRepresentationTest_newObject.java | 4 +- .../applib/JsonRepresentationTest_size.java | 15 ++++--- ...JsonRepresentationTest_streamArrayElements.java | 8 ++-- .../applib/JsonRepresentationTest_urlEncoding.java | 4 +- .../applib/LinkRepresentationTest_equals.java | 4 +- .../restfulobjects/applib/Rel_getName_Test.java | 4 +- .../RestfulRequest_DomainModelTest_parser.java | 6 +-- ...equestParameterTest_valueOf_xrodomainmodel.java | 8 ++-- ...equestParameterTest_valueOf_xrofollowlinks.java | 8 ++-- .../client/RestfulResponse_HeaderTest_Warning.java | 4 +- .../client/RestfulResponse_HttpStatusCodeTest.java | 4 +- ...mainObjectRepresentationTest_getCollection.java | 8 ++-- ...ainObjectRepresentationTest_getCollections.java | 8 ++-- ...mainObjectRepresentationTest_getProperties.java | 8 ++-- ...DomainObjectRepresentationTest_getProperty.java | 8 ++-- .../restfulobjects/applib/util/Parser_Test.java | 6 +-- .../applib/util/PathNodeTest_equalsHashcode.java | 8 ++-- .../applib/util/PathNodeTest_parse.java | 4 +- .../applib/util/PathNodeTest_split.java | 4 +- 36 files changed, 211 insertions(+), 195 deletions(-) diff --cc viewers/restfulobjects/applib/src/test/java/org/apache/causeway/viewer/restfulobjects/applib/client/RestfulResponse_HttpStatusCodeTest.java index 17d145a21f,9242f1bcd5..0a886e161f --- a/viewers/restfulobjects/applib/src/test/java/org/apache/causeway/viewer/restfulobjects/applib/client/RestfulResponse_HttpStatusCodeTest.java +++ b/viewers/restfulobjects/applib/src/test/java/org/apache/causeway/viewer/restfulobjects/applib/client/RestfulResponse_HttpStatusCodeTest.java @@@ -18,9 -18,9 +18,9 @@@ */ package org.apache.causeway.viewer.restfulobjects.applib.client; -import javax.ws.rs.core.Response.Status.Family; +import jakarta.ws.rs.core.Response.Status.Family; - import org.junit.Test; + import org.junit.jupiter.api.Test; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat;
