Return-Path: X-Original-To: apmail-marmotta-commits-archive@minotaur.apache.org Delivered-To: apmail-marmotta-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E54B410AB7 for ; Wed, 26 Mar 2014 08:20:38 +0000 (UTC) Received: (qmail 59563 invoked by uid 500); 26 Mar 2014 08:20:05 -0000 Delivered-To: apmail-marmotta-commits-archive@marmotta.apache.org Received: (qmail 59196 invoked by uid 500); 26 Mar 2014 08:19:53 -0000 Mailing-List: contact commits-help@marmotta.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@marmotta.apache.org Delivered-To: mailing list commits@marmotta.apache.org Received: (qmail 57648 invoked by uid 99); 26 Mar 2014 08:19:12 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Mar 2014 08:19:12 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 99EE6949437; Wed, 26 Mar 2014 08:19:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wikier@apache.org To: commits@marmotta.apache.org Date: Wed, 26 Mar 2014 08:19:27 -0000 Message-Id: <5f788204b25d4f8291e05872b36ab9f3@git.apache.org> In-Reply-To: <9b9a5271f6d849aab3277646629e7fb9@git.apache.org> References: <9b9a5271f6d849aab3277646629e7fb9@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [19/50] [abbrv] git commit: added some KiWiIO Tests added some KiWiIO Tests Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/b9f7df36 Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/b9f7df36 Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/b9f7df36 Branch: refs/heads/ldp Commit: b9f7df36a74e6350c6c7dcb547bdbd604455d4f8 Parents: 532fa9f Author: Sebastian Schaffert Authored: Tue Mar 18 17:19:21 2014 +0100 Committer: Sebastian Schaffert Committed: Tue Mar 18 17:19:21 2014 +0100 ---------------------------------------------------------------------- .../org/apache/marmotta/kiwi/test/cluster/SerializerTest.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/marmotta/blob/b9f7df36/libraries/kiwi/kiwi-caching-hazelcast/src/test/java/org/apache/marmotta/kiwi/test/cluster/SerializerTest.java ---------------------------------------------------------------------- diff --git a/libraries/kiwi/kiwi-caching-hazelcast/src/test/java/org/apache/marmotta/kiwi/test/cluster/SerializerTest.java b/libraries/kiwi/kiwi-caching-hazelcast/src/test/java/org/apache/marmotta/kiwi/test/cluster/SerializerTest.java index 675db87..c457832 100644 --- a/libraries/kiwi/kiwi-caching-hazelcast/src/test/java/org/apache/marmotta/kiwi/test/cluster/SerializerTest.java +++ b/libraries/kiwi/kiwi-caching-hazelcast/src/test/java/org/apache/marmotta/kiwi/test/cluster/SerializerTest.java @@ -21,6 +21,7 @@ import com.hazelcast.config.SerializationConfig; import com.hazelcast.config.SerializerConfig; import com.hazelcast.nio.serialization.*; import org.apache.commons.lang3.RandomStringUtils; +import org.apache.marmotta.commons.vocabulary.SCHEMA; import org.apache.marmotta.commons.vocabulary.XSD; import org.apache.marmotta.kiwi.hazelcast.serializer.*; import org.apache.marmotta.kiwi.model.rdf.*; @@ -104,6 +105,9 @@ public class SerializerTest { marshall((KiWiUriResource) valueFactory.createURI(XSD.Double.stringValue()), new UriSerializer()); marshall((KiWiUriResource) valueFactory.createURI(RDFS.LABEL.stringValue()), new UriSerializer()); marshall((KiWiUriResource) valueFactory.createURI(OWL.SAMEAS.stringValue()), new UriSerializer()); + marshall((KiWiUriResource) valueFactory.createURI(SCHEMA.Place.stringValue()), new UriSerializer()); + marshall((KiWiUriResource) valueFactory.createURI("http://dbpedia.org/resource/Colorado"), new UriSerializer()); + marshall((KiWiUriResource) valueFactory.createURI("http://rdf.freebase.com/ns/test"), new UriSerializer()); }