Return-Path: X-Original-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Delivered-To: apmail-commonsrdf-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 D8E3017B99 for ; Fri, 27 Mar 2015 18:15:40 +0000 (UTC) Received: (qmail 33584 invoked by uid 500); 27 Mar 2015 18:15:40 -0000 Delivered-To: apmail-commonsrdf-commits-archive@commonsrdf.apache.org Received: (qmail 33555 invoked by uid 500); 27 Mar 2015 18:15:40 -0000 Mailing-List: contact commits-help@commonsrdf.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commonsrdf.incubator.apache.org Delivered-To: mailing list commits@commonsrdf.incubator.apache.org Received: (qmail 33546 invoked by uid 99); 27 Mar 2015 18:15:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Mar 2015 18:15:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 27 Mar 2015 18:15:08 +0000 Received: (qmail 30588 invoked by uid 99); 27 Mar 2015 18:15:00 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Mar 2015 18:15:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CDAA1E2F51; Fri, 27 Mar 2015 18:14:59 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wikier@apache.org To: commits@commonsrdf.incubator.apache.org Date: Fri, 27 Mar 2015 18:15:26 -0000 Message-Id: <5028edb4ef174dea90a4f4a48e961bef@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [28/50] [abbrv] incubator-commonsrdf git commit: Add test for Types X-Virus-Checked: Checked by ClamAV on apache.org Add test for Types Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/cbd620a2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/cbd620a2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/cbd620a2 Branch: refs/heads/master Commit: cbd620a27a47c354b08683f687a9a72f88231176 Parents: 43b3d9f Author: Peter Ansell Authored: Tue Jan 27 12:40:31 2015 +1100 Committer: Peter Ansell Committed: Tue Jan 27 12:40:31 2015 +1100 ---------------------------------------------------------------------- .../com/github/commonsrdf/simple/TypesTest.java | 69 ++++++++++++++++++++ 1 file changed, 69 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/cbd620a2/simple/src/test/java/com/github/commonsrdf/simple/TypesTest.java ---------------------------------------------------------------------- diff --git a/simple/src/test/java/com/github/commonsrdf/simple/TypesTest.java b/simple/src/test/java/com/github/commonsrdf/simple/TypesTest.java new file mode 100644 index 0000000..eb713f2 --- /dev/null +++ b/simple/src/test/java/com/github/commonsrdf/simple/TypesTest.java @@ -0,0 +1,69 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.github.commonsrdf.simple; + +import static org.junit.Assert.*; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +/** + * Tests for the {@link Types} enumeration. + * + * @author Peter Ansell p_ansell@yahoo.com + */ +public class TypesTest { + + /** + * Test method for {@link com.github.commonsrdf.simple.Types#getIRIString()} + * . + */ + @Test + public final void testGetIRIString() { + assertEquals("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + Types.RDF_LANGSTRING.getIRIString()); + } + + /** + * Test method for + * {@link com.github.commonsrdf.simple.Types#ntriplesString()}. + */ + @Test + public final void testNtriplesString() { + assertEquals("", + Types.RDF_LANGSTRING.ntriplesString()); + } + + /** + * Test method for + * {@link com.github.commonsrdf.simple.Types#get(com.github.commonsrdf.api.IRI)} + * . + */ + @Test + public final void testGet() { + assertTrue(Types.get( + new IRIImpl("http://www.w3.org/2001/XMLSchema#boolean")) + .isPresent()); + assertEquals( + "http://www.w3.org/2001/XMLSchema#boolean", + Types.get( + new IRIImpl("http://www.w3.org/2001/XMLSchema#boolean")) + .get().getIRIString()); + assertFalse(Types.get( + new IRIImpl("http://www.w3.org/2001/XMLSchema#nonExistent")) + .isPresent()); + } + +}