You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/05/22 11:53:30 UTC

[isis-app-simpleapp] 01/04: removes test due to removed system mixin

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

danhaywood pushed a commit to branch jdo-SNAPSHOT
in repository https://gitbox.apache.org/repos/asf/isis-app-simpleapp.git

commit 4a80224ef72bdd16361b00007a5270d3e36c658d
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sat May 22 09:16:11 2021 +0100

    removes test due to removed system mixin
---
 .../simple/integtests/tests/SimpleObject_IntegTest.java     | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/module-simple-tests/src/test/java/domainapp/modules/simple/integtests/tests/SimpleObject_IntegTest.java b/module-simple-tests/src/test/java/domainapp/modules/simple/integtests/tests/SimpleObject_IntegTest.java
index c87098c..1c2a331 100644
--- a/module-simple-tests/src/test/java/domainapp/modules/simple/integtests/tests/SimpleObject_IntegTest.java
+++ b/module-simple-tests/src/test/java/domainapp/modules/simple/integtests/tests/SimpleObject_IntegTest.java
@@ -16,7 +16,6 @@ import static org.junit.jupiter.api.Assertions.assertThrows;
 import org.apache.isis.applib.annotation.DomainService;
 import org.apache.isis.applib.services.wrapper.DisabledException;
 import org.apache.isis.applib.services.wrapper.InvalidException;
-import org.apache.isis.persistence.jdo.datanucleus.mixins.Persistable_datanucleusIdLong;
 
 import lombok.Getter;
 
@@ -88,16 +87,4 @@ public class SimpleObject_IntegTest extends SimpleModuleIntegTestAbstract {
         }
     }
 
-    public static class dataNucleusId extends SimpleObject_IntegTest {
-
-        @Test
-        public void should_be_populated() {
-            // when
-            final Long id = mixin(Persistable_datanucleusIdLong.class, simpleObject).prop();
-
-            // then
-            assertThat(id).isGreaterThanOrEqualTo(0);
-        }
-    }
-
 }