You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/09/13 08:12:43 UTC

[isis] branch master updated: ISIS-3209: migrate core-runtimeservices

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 4cc3c79992 ISIS-3209: migrate core-runtimeservices
4cc3c79992 is described below

commit 4cc3c799922e1f762521fc66c02a1de1f5a7f4c5
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Sep 13 10:12:36 2022 +0200

    ISIS-3209: migrate core-runtimeservices
---
 core/runtimeservices/pom.xml                                        | 2 +-
 .../isis/core/runtimeservices/i18n/po/PoWriterTest_escape.java      | 6 +++---
 .../core/runtimeservices/urlencoding/UrlEncodingServiceTest.java    | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/core/runtimeservices/pom.xml b/core/runtimeservices/pom.xml
index 45bbb7d1e1..48241aff5d 100644
--- a/core/runtimeservices/pom.xml
+++ b/core/runtimeservices/pom.xml
@@ -86,7 +86,7 @@
 
         <dependency>
             <groupId>org.apache.isis.core</groupId>
-            <artifactId>isis-core-internaltestvintage</artifactId>
+            <artifactId>isis-core-internaltestsupport</artifactId>
             <scope>test</scope>
         </dependency>
 
diff --git a/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/i18n/po/PoWriterTest_escape.java b/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/i18n/po/PoWriterTest_escape.java
index 2e31cb595c..abc6ffeeea 100644
--- a/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/i18n/po/PoWriterTest_escape.java
+++ b/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/i18n/po/PoWriterTest_escape.java
@@ -18,13 +18,13 @@
  */
 package org.apache.isis.core.runtimeservices.i18n.po;
 
-import org.junit.Test;
+import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.CoreMatchers.equalTo;
 import static org.hamcrest.CoreMatchers.is;
 import static org.hamcrest.MatcherAssert.assertThat;
 
-public class PoWriterTest_escape {
+class PoWriterTest_escape {
 
     @Test
     public void no_quotes() throws Exception {
@@ -38,7 +38,7 @@ public class PoWriterTest_escape {
         assertThat(escape, is(equalTo(str('a', '\\', '"', 'b', '\\', '"', 'c'))));
     }
 
-    private static String str(char... params) {
+    private static String str(final char... params) {
         return new String(params);
     }
 }
\ No newline at end of file
diff --git a/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/urlencoding/UrlEncodingServiceTest.java b/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/urlencoding/UrlEncodingServiceTest.java
index 76c6f1b99b..d4ceee5774 100644
--- a/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/urlencoding/UrlEncodingServiceTest.java
+++ b/core/runtimeservices/src/test/java/org/apache/isis/core/runtimeservices/urlencoding/UrlEncodingServiceTest.java
@@ -24,7 +24,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
 
 import org.apache.isis.applib.services.urlencoding.UrlEncodingService;
 
-public class UrlEncodingServiceTest {
+class UrlEncodingServiceTest {
 
     UrlEncodingServiceWithCompression serviceWithCompression;
     UrlEncodingService serviceBaseEncoding;