Repository: jena Updated Branches: refs/heads/master 88fbc93d2 -> 2b3a4c7bc
Fix test suite naming. Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/94921dc0 Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/94921dc0 Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/94921dc0 Branch: refs/heads/master Commit: 94921dc0da8650b1cf7472d17ac0b737fcee2d44 Parents: 2d421aa Author: Andy Seaborne <[email protected]> Authored: Wed Dec 13 16:34:24 2017 +0000 Committer: Andy Seaborne <[email protected]> Committed: Sun Dec 17 20:04:42 2017 +0000 ---------------------------------------------------------------------- .../jena/sparql/expr/TestE_FunctionDynamic.java | 36 -------------------- .../jena/sparql/expr/TestFunctionDynamic.java | 36 ++++++++++++++++++++ 2 files changed, 36 insertions(+), 36 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/94921dc0/jena-arq/src/test/java/org/apache/jena/sparql/expr/TestE_FunctionDynamic.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/expr/TestE_FunctionDynamic.java b/jena-arq/src/test/java/org/apache/jena/sparql/expr/TestE_FunctionDynamic.java deleted file mode 100644 index 4f57126..0000000 --- a/jena-arq/src/test/java/org/apache/jena/sparql/expr/TestE_FunctionDynamic.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.jena.sparql.expr; - -import static org.junit.Assert.*; -import org.junit.Test; - -public class TestE_FunctionDynamic { - - @Test - public void testConstructor_ExprList() { - Expr e = new E_FunctionDynamic( new ExprList() ); - assertTrue( e instanceof E_FunctionDynamic ); - } - - @Test - public void testConstructor_ExprAndExprList() { - Expr e = new E_FunctionDynamic( Expr.NONE, new ExprList() ); - assertTrue( e instanceof E_FunctionDynamic ); - } -} http://git-wip-us.apache.org/repos/asf/jena/blob/94921dc0/jena-arq/src/test/java/org/apache/jena/sparql/expr/TestFunctionDynamic.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/expr/TestFunctionDynamic.java b/jena-arq/src/test/java/org/apache/jena/sparql/expr/TestFunctionDynamic.java new file mode 100644 index 0000000..f80cc42 --- /dev/null +++ b/jena-arq/src/test/java/org/apache/jena/sparql/expr/TestFunctionDynamic.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.expr; + +import static org.junit.Assert.*; +import org.junit.Test; + +public class TestFunctionDynamic { + + @Test + public void testConstructor_ExprList() { + Expr e = new E_FunctionDynamic( new ExprList() ); + assertTrue( e instanceof E_FunctionDynamic ); + } + + @Test + public void testConstructor_ExprAndExprList() { + Expr e = new E_FunctionDynamic( Expr.NONE, new ExprList() ); + assertTrue( e instanceof E_FunctionDynamic ); + } +}
