You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cs...@apache.org on 2018/02/15 20:38:40 UTC

aries-rsa git commit: Deactivate DTO serialization test and reactivate Version ser variants

Repository: aries-rsa
Updated Branches:
  refs/heads/master a192067bb -> 8cfde96f9


Deactivate DTO serialization test and reactivate Version ser variants


Project: http://git-wip-us.apache.org/repos/asf/aries-rsa/repo
Commit: http://git-wip-us.apache.org/repos/asf/aries-rsa/commit/8cfde96f
Tree: http://git-wip-us.apache.org/repos/asf/aries-rsa/tree/8cfde96f
Diff: http://git-wip-us.apache.org/repos/asf/aries-rsa/diff/8cfde96f

Branch: refs/heads/master
Commit: 8cfde96f9c540edcf71f705757dcc861570d75ff
Parents: a192067
Author: Christian Schneider <cs...@adobe.com>
Authored: Thu Feb 15 21:38:33 2018 +0100
Committer: Christian Schneider <cs...@adobe.com>
Committed: Thu Feb 15 21:38:33 2018 +0100

----------------------------------------------------------------------
 .../apache/aries/rsa/provider/tcp/TcpProviderPrimitiveTest.java | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aries-rsa/blob/8cfde96f/provider/tcp/src/test/java/org/apache/aries/rsa/provider/tcp/TcpProviderPrimitiveTest.java
----------------------------------------------------------------------
diff --git a/provider/tcp/src/test/java/org/apache/aries/rsa/provider/tcp/TcpProviderPrimitiveTest.java b/provider/tcp/src/test/java/org/apache/aries/rsa/provider/tcp/TcpProviderPrimitiveTest.java
index 4acdeda..e2797d9 100644
--- a/provider/tcp/src/test/java/org/apache/aries/rsa/provider/tcp/TcpProviderPrimitiveTest.java
+++ b/provider/tcp/src/test/java/org/apache/aries/rsa/provider/tcp/TcpProviderPrimitiveTest.java
@@ -117,26 +117,22 @@ public class TcpProviderPrimitiveTest {
         assertThat(myServiceProxy.callVersion(parseVersion("1.0.0")), equalTo(parseVersion("1.0.0")));
     }
     
-    @Ignore
     @Test
     public void testVersionAr() {
         assertThat(myServiceProxy.callVersionAr(new Version[] {parseVersion("1.0.0")}), equalTo(new Version[] {parseVersion("1.0.0")}));
     }
     
-    @Ignore
     @Test
     public void testVersionList() {
         assertThat(myServiceProxy.callVersionList(Arrays.asList(parseVersion("1.0.0"))), equalTo(Arrays.asList(parseVersion("1.0.0"))));
     }
     
-    @Ignore
     @Test
     public void testVersionSet() {
         Set<Version> set = new HashSet<>(asList(parseVersion("1.0.0")));
         assertThat(myServiceProxy.callVersionSet(set), everyItem(isIn(set)));
     }
     
-    @Ignore
     @Test
     public void testVersionMap() {
         HashMap<Version, Version> map = new HashMap<>();
@@ -144,6 +140,7 @@ public class TcpProviderPrimitiveTest {
         assertThat(myServiceProxy.callVersionMap(map).entrySet(), everyItem(isIn(map.entrySet())));
     }
 
+    @Ignore
     @Test
     public void testDTO() {
         DTOType dto = new DTOType();