Repository: vxquery Updated Branches: refs/heads/prestonc/vxquery_test_suite [created] 1ac6b4076
Stub for junit test. Project: http://git-wip-us.apache.org/repos/asf/vxquery/repo Commit: http://git-wip-us.apache.org/repos/asf/vxquery/commit/131096b6 Tree: http://git-wip-us.apache.org/repos/asf/vxquery/tree/131096b6 Diff: http://git-wip-us.apache.org/repos/asf/vxquery/diff/131096b6 Branch: refs/heads/prestonc/vxquery_test_suite Commit: 131096b6887b30843e44f311bc2558bd7fb5955c Parents: e7ba96b Author: Preston Carman <[email protected]> Authored: Thu Aug 14 12:23:27 2014 -0700 Committer: Preston Carman <[email protected]> Committed: Thu Aug 14 12:23:27 2014 -0700 ---------------------------------------------------------------------- .../org/apache/vxquery/xtest/VXQueryTest.java | 49 ++++++++++++++++++++ 1 file changed, 49 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/vxquery/blob/131096b6/vxquery-xtest/src/test/java/org/apache/vxquery/xtest/VXQueryTest.java ---------------------------------------------------------------------- diff --git a/vxquery-xtest/src/test/java/org/apache/vxquery/xtest/VXQueryTest.java b/vxquery-xtest/src/test/java/org/apache/vxquery/xtest/VXQueryTest.java new file mode 100644 index 0000000..39f4b4f --- /dev/null +++ b/vxquery-xtest/src/test/java/org/apache/vxquery/xtest/VXQueryTest.java @@ -0,0 +1,49 @@ +/* +* 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.vxquery.xtest; + +import java.io.File; +import java.util.Collection; + +import org.apache.commons.lang3.StringUtils; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; +import org.junit.runners.Parameterized.Parameters; + +@RunWith(Parameterized.class) +public class VXQueryTest { + + private static final String PATH_QUERIES = StringUtils.join(new String[] { "Queries", "XQuery" + File.separator }, + File.separator); + private static final String PATH_RESULTS = "ExpectedTestResults" + File.separator; + private static final String PATH_TESTS = "cat" + File.separator; + private static final String PATH_BASE = StringUtils.join( + new String[] { "src", "test", "resources" + File.separator }, File.separator); + + @Parameters + public static Collection<Object[]> tests() throws Exception { + return null; + } + + public VXQueryTest() { + } + + @Test + public void test() throws Exception { + } +} \ No newline at end of file
