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 5E20B17B98 for ; Fri, 27 Mar 2015 18:15:40 +0000 (UTC) Received: (qmail 33536 invoked by uid 500); 27 Mar 2015 18:15:40 -0000 Delivered-To: apmail-commonsrdf-commits-archive@commonsrdf.apache.org Received: (qmail 33507 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 33498 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:09 +0000 Received: (qmail 30594 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 02A24E2F47; Fri, 27 Mar 2015 18:15:00 +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:48 -0000 Message-Id: <9c4e0a7029b04796a6fa41e0ed156f66@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [50/50] [abbrv] incubator-commonsrdf git commit: move DefaultRDFTermFactoryTest to the api module as it doesn't rely on simple X-Virus-Checked: Checked by ClamAV on apache.org move DefaultRDFTermFactoryTest to the api module as it doesn't rely on simple also, jacoco/coveralls doesn't currently recognise the test coverage if it is run in the simple module Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/2bfe3161 Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/2bfe3161 Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/2bfe3161 Branch: refs/heads/master Commit: 2bfe31612e963b6d2b5e50f13fd2e518ffcf0525 Parents: eb0b0f9 Author: Peter Ansell Authored: Wed Mar 11 09:17:02 2015 +1100 Committer: Peter Ansell Committed: Wed Mar 11 09:17:02 2015 +1100 ---------------------------------------------------------------------- .../api/DefaultRDFTermFactoryTest.java | 32 +++++++++++++++++++ .../simple/DefaultRDFTermFactoryTest.java | 33 -------------------- 2 files changed, 32 insertions(+), 33 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/2bfe3161/api/src/test/java/com/github/commonsrdf/api/DefaultRDFTermFactoryTest.java ---------------------------------------------------------------------- diff --git a/api/src/test/java/com/github/commonsrdf/api/DefaultRDFTermFactoryTest.java b/api/src/test/java/com/github/commonsrdf/api/DefaultRDFTermFactoryTest.java new file mode 100644 index 0000000..e314968 --- /dev/null +++ b/api/src/test/java/com/github/commonsrdf/api/DefaultRDFTermFactoryTest.java @@ -0,0 +1,32 @@ +/** + * 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.api; + +import com.github.commonsrdf.api.RDFTermFactory; + +/** + * The default RDFTermFactory might be useless (every method throws + * UnsupportedOperationException), but this test ensures that + * AbstractRDFTermFactoryTest does not fall over on unsupported operations. + * + */ +public class DefaultRDFTermFactoryTest extends AbstractRDFTermFactoryTest { + + @Override + public RDFTermFactory createFactory() { + return new RDFTermFactory() { + }; + } + +} http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/2bfe3161/simple/src/test/java/com/github/commonsrdf/simple/DefaultRDFTermFactoryTest.java ---------------------------------------------------------------------- diff --git a/simple/src/test/java/com/github/commonsrdf/simple/DefaultRDFTermFactoryTest.java b/simple/src/test/java/com/github/commonsrdf/simple/DefaultRDFTermFactoryTest.java deleted file mode 100644 index 476cbf1..0000000 --- a/simple/src/test/java/com/github/commonsrdf/simple/DefaultRDFTermFactoryTest.java +++ /dev/null @@ -1,33 +0,0 @@ -/** - * 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 com.github.commonsrdf.api.AbstractRDFTermFactoryTest; -import com.github.commonsrdf.api.RDFTermFactory; - -/** - * The default RDFTermFactory might be useless (every method throws - * UnsupportedOperationException), but this test ensures that - * AbstractRDFTermFactoryTest does not fall over on unsupported operations. - * - */ -public class DefaultRDFTermFactoryTest extends AbstractRDFTermFactoryTest { - - @Override - public RDFTermFactory createFactory() { - return new RDFTermFactory() { - }; - } - -}