{
+ /**
+ * Implementations should generate test data objects and register them with the registry.
+ *
+ * The "init()" Methods are usually structured as follows:
+ * - Creation of all instances, using the factory if one is available.
+ * - Setting of all properties of all instances.
+ * - Registration of instance with names (root names and bean names) insofar as it is required by
+ * the tests.
+ *
+ *
The test class name is usually given as argument to the constructor of the factory class.
+ * Often the name is read from the "org.tck.testdata" property in the config files.
+ *
+ * @param factory Factory instance. May be "null" if no factory is used.
+ * @param registry Registry for named objects (formerly "roots" and "beans").
+ */
+ void init(F factory, DefaultListableInstanceFactory registry);
+}
diff --git a/tck/src/main/java/org/apache/jdo/tck/util/DataSourceUtil.java b/tck/src/main/java/org/apache/jdo/tck/util/DataSourceUtil.java
new file mode 100644
index 000000000..4e325a44e
--- /dev/null
+++ b/tck/src/main/java/org/apache/jdo/tck/util/DataSourceUtil.java
@@ -0,0 +1,61 @@
+/*
+ * 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
+ *
+ * https://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.jdo.tck.util;
+
+import java.util.Arrays;
+import java.util.Date;
+import java.util.GregorianCalendar;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.function.Function;
+import java.util.stream.Collectors;
+
+public interface DataSourceUtil {
+
+ static Date date(int y, int m, int d) {
+ return new GregorianCalendar(y, m - 1, d, 0, 0, 0).getTime();
+ }
+
+ @SafeVarargs
+ static List toList(T... objs) {
+ return Arrays.stream(objs).collect(Collectors.toList());
+ }
+
+ static Map toMap(String... objs) {
+ Map map = new HashMap<>();
+ for (int i = 0; i < objs.length; i += 2) {
+ map.put(objs[i], objs[i + 1]);
+ }
+ return map;
+ }
+
+ static Map toMap(Function keyFn, V... objs) {
+ Map map = new HashMap<>();
+ for (int i = 0; i < objs.length; i++) {
+ map.put(keyFn.apply(objs[i]), objs[i]);
+ }
+ return map;
+ }
+
+ @SafeVarargs
+ static Set toSet(T... objs) {
+ return Arrays.stream(objs).collect(Collectors.toSet());
+ }
+}
diff --git a/tck/src/main/java/org/apache/jdo/tck/util/DefaultListableInstanceFactory.java b/tck/src/main/java/org/apache/jdo/tck/util/DefaultListableInstanceFactory.java
new file mode 100644
index 000000000..bee9e272f
--- /dev/null
+++ b/tck/src/main/java/org/apache/jdo/tck/util/DefaultListableInstanceFactory.java
@@ -0,0 +1,56 @@
+package org.apache.jdo.tck.util;
+
+import java.lang.reflect.Constructor;
+import java.lang.reflect.InvocationTargetException;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.List;
+
+public class DefaultListableInstanceFactory {
+
+ private final HashMap rootMap = new HashMap<>();
+ private final List rootList = new ArrayList<>();
+
+ public final synchronized Object getBean(String name) {
+ if ("root".equals(name)) {
+ return getRootList();
+ }
+ return rootMap.get(name);
+ }
+
+ public final synchronized T getBean(String name, Class clazz) {
+ return clazz.cast(getBean(name));
+ }
+
+ public synchronized void register(String name, Object obj) {
+ rootMap.put(name, obj);
+ rootList.add(obj);
+ }
+
+ /**
+ * Returns a list of root objects. The method expects to find a bean called "root" of type list in
+ * the xml and returns it.
+ *
+ * @return a list of root instances
+ */
+ public final synchronized List getRootList() {
+ return Collections.unmodifiableList(rootList);
+ }
+
+ @SuppressWarnings("unchecked")
+ public static DataSource getDataSource(String resourceName) {
+ try {
+ Class> cls = (Class>) Class.forName(resourceName);
+ Constructor> cstr = cls.getConstructor();
+ return cstr.newInstance();
+ } catch (ClassNotFoundException
+ | InvocationTargetException
+ | NoSuchMethodException
+ | InstantiationException
+ | IllegalAccessException
+ | NullPointerException e) {
+ throw new IllegalArgumentException("Error executing test data class: " + resourceName, e);
+ }
+ }
+}
diff --git a/tck/src/main/java/org/apache/jdo/tck/util/JDOCustomDateEditor.java b/tck/src/main/java/org/apache/jdo/tck/util/JDOCustomDateEditor.java
index 124d14698..c58ef43b0 100644
--- a/tck/src/main/java/org/apache/jdo/tck/util/JDOCustomDateEditor.java
+++ b/tck/src/main/java/org/apache/jdo/tck/util/JDOCustomDateEditor.java
@@ -19,20 +19,16 @@
import java.text.SimpleDateFormat;
import java.util.Date;
-import java.util.Locale;
-import org.springframework.beans.propertyeditors.CustomDateEditor;
-public class JDOCustomDateEditor extends CustomDateEditor {
+public class JDOCustomDateEditor {
/** The format of date values in the xml representation */
public static final String DATE_PATTERN = "d/MMM/yyyy";
- public JDOCustomDateEditor() {
- super(new SimpleDateFormat(DATE_PATTERN, Locale.US), true);
- }
+ private JDOCustomDateEditor() {}
/**
- * Redturs a string representation of the specified date using DATE_PATTERN as date formatter
+ * Returns a string representation of the specified date using DATE_PATTERN as date formatter
* pattern.
*
* @param date the date
diff --git a/tck/src/main/java/org/apache/jdo/tck/util/jndi/MockContext.java b/tck/src/main/java/org/apache/jdo/tck/util/jndi/MockContext.java
index 3a469a987..61a106a1a 100644
--- a/tck/src/main/java/org/apache/jdo/tck/util/jndi/MockContext.java
+++ b/tck/src/main/java/org/apache/jdo/tck/util/jndi/MockContext.java
@@ -19,7 +19,13 @@
import java.util.Hashtable;
import java.util.Map;
-import javax.naming.*;
+import javax.naming.Binding;
+import javax.naming.Context;
+import javax.naming.Name;
+import javax.naming.NameClassPair;
+import javax.naming.NameParser;
+import javax.naming.NamingEnumeration;
+import javax.naming.NamingException;
public class MockContext implements Context {
private final Map map;
diff --git a/tck/src/main/resources/conf/company1-1Relationships.conf b/tck/src/main/resources/conf/company1-1Relationships.conf
index 2bd5652f5..ce797d143 100644
--- a/tck/src/main/resources/conf/company1-1Relationships.conf
+++ b/tck/src/main/resources/conf/company1-1Relationships.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with 1-1 relationships.
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/company1-1Relationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.Relationships1_1Data
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/company1-MRelationships.conf b/tck/src/main/resources/conf/company1-MRelationships.conf
index 825f3aa6f..189fb9feb 100644
--- a/tck/src/main/resources/conf/company1-MRelationships.conf
+++ b/tck/src/main/resources/conf/company1-MRelationships.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with 1-M relationships.
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/company1-MRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.Relationships1_MData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAllRelationships.conf b/tck/src/main/resources/conf/companyAllRelationships.conf
index 606ccce93..b9d944075 100644
--- a/tck/src/main/resources/conf/companyAllRelationships.conf
+++ b/tck/src/main/resources/conf/companyAllRelationships.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects.
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotated1-1RelationshipsFCPM.conf b/tck/src/main/resources/conf/companyAnnotated1-1RelationshipsFCPM.conf
index f4d91eef3..f71ff09a5 100644
--- a/tck/src/main/resources/conf/companyAnnotated1-1RelationshipsFCPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotated1-1RelationshipsFCPM.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with 1-1 relationships, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/company1-1Relationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.Relationships1_1Data
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotated1-MRelationshipsFCPM.conf b/tck/src/main/resources/conf/companyAnnotated1-MRelationshipsFCPM.conf
index 19bdea0a8..550d7aa56 100644
--- a/tck/src/main/resources/conf/companyAnnotated1-MRelationshipsFCPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotated1-MRelationshipsFCPM.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with 1-M relationships, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/company1-MRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.Relationships1_MData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsFCConcrete.conf b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsFCConcrete.conf
index 436322a8a..5c32eea5e 100644
--- a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsFCConcrete.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsFCConcrete.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCConcreteDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsFCPM.conf b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsFCPM.conf
index 181a879c3..46f51d7d1 100644
--- a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsFCPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsFCPM.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsJPAConcrete.conf b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsJPAConcrete.conf
index 4013a7760..d7232287c 100644
--- a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsJPAConcrete.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsJPAConcrete.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with M-M relationships, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedJPA.CompanyFactoryAnnotatedJPAAppConcrete
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTestJPA
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsJPAPM.conf b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsJPAPM.conf
index 9ea828b01..97b6a0b24 100644
--- a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsJPAPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsJPAPM.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedJPA.CompanyFactoryAnnotatedJPAAppPM
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTestJPA
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPCConcrete.conf b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPCConcrete.conf
index 80d6057f8..395668767 100644
--- a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPCConcrete.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPCConcrete.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedPC.CompanyFactoryAnnotatedPCConcreteDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPCPM.conf b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPCPM.conf
index 7fd69991c..8f891e6a1 100644
--- a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPCPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPCPM.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedPC.CompanyFactoryAnnotatedPCPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPIPM.conf b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPIPM.conf
index 8f36c466c..01070bb01 100644
--- a/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPIPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedAllRelationshipsPIPM.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with no relationships.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedPI.CompanyFactoryAnnotatedPIPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedEmbeddedFCPM.conf b/tck/src/main/resources/conf/companyAnnotatedEmbeddedFCPM.conf
index ac4402d7c..b1a60a192 100644
--- a/tck/src/main/resources/conf/companyAnnotatedEmbeddedFCPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedEmbeddedFCPM.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyEmbedded.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.EmbeddedTestData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedEmbeddedJPAConcrete.conf b/tck/src/main/resources/conf/companyAnnotatedEmbeddedJPAConcrete.conf
index 8bb34979e..99d56c55b 100644
--- a/tck/src/main/resources/conf/companyAnnotatedEmbeddedJPAConcrete.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedEmbeddedJPAConcrete.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with no relationships.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedJPA.CompanyFactoryAnnotatedJPAAppConcrete
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTestJPA
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyEmbedded.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.EmbeddedTestData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedEmbeddedJPAPM.conf b/tck/src/main/resources/conf/companyAnnotatedEmbeddedJPAPM.conf
index bd77aacae..661472359 100644
--- a/tck/src/main/resources/conf/companyAnnotatedEmbeddedJPAPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedEmbeddedJPAPM.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedJPA.CompanyFactoryAnnotatedJPAAppPM
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTestJPA
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyEmbedded.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.EmbeddedTestData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedM-MRelationshipsFCConcrete.conf b/tck/src/main/resources/conf/companyAnnotatedM-MRelationshipsFCConcrete.conf
index 86bed6e45..9b8dbd8be 100644
--- a/tck/src/main/resources/conf/companyAnnotatedM-MRelationshipsFCConcrete.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedM-MRelationshipsFCConcrete.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with M-M relationships, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCConcreteDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyM-MRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsM_MData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedM-MRelationshipsFCPM.conf b/tck/src/main/resources/conf/companyAnnotatedM-MRelationshipsFCPM.conf
index 366248808..3b1f7501d 100644
--- a/tck/src/main/resources/conf/companyAnnotatedM-MRelationshipsFCPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedM-MRelationshipsFCPM.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with M-M relationships, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyM-MRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsM_MData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsFCConcrete.conf b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsFCConcrete.conf
index d4522468b..02d7b2fee 100644
--- a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsFCConcrete.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsFCConcrete.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with no relationships.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCConcreteDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyNoRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsNoData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsFCPM.conf b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsFCPM.conf
index 51420f1cd..9661fd420 100644
--- a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsFCPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsFCPM.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with no relationships.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyNoRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsNoData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPCConcrete.conf b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPCConcrete.conf
index 3660eae0a..128375aed 100644
--- a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPCConcrete.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPCConcrete.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with no relationships.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedPC.CompanyFactoryAnnotatedPCConcreteDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyNoRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsNoData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPCPM.conf b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPCPM.conf
index 07486898f..79beac8bf 100644
--- a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPCPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPCPM.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with no relationships.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedPC.CompanyFactoryAnnotatedPCPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyNoRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsNoData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPIPM.conf b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPIPM.conf
index 80e2edbc4..6fcfac286 100644
--- a/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPIPM.conf
+++ b/tck/src/main/resources/conf/companyAnnotatedNoRelationshipsPIPM.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with no relationships.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedPI.CompanyFactoryAnnotatedPIPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyNoRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsNoData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyEmbedded.conf b/tck/src/main/resources/conf/companyEmbedded.conf
index e3ae8ac68..387061d1d 100644
--- a/tck/src/main/resources/conf/companyEmbedded.conf
+++ b/tck/src/main/resources/conf/companyEmbedded.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects.
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyEmbedded.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.EmbeddedTestData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyListWithoutJoin.conf b/tck/src/main/resources/conf/companyListWithoutJoin.conf
index 270ebc359..f3d8139b6 100644
--- a/tck/src/main/resources/conf/companyListWithoutJoin.conf
+++ b/tck/src/main/resources/conf/companyListWithoutJoin.conf
@@ -15,7 +15,7 @@
jdo.tck.description = Completeness test with companyListWithoutJoin model.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyListWithoutJoin.CompanyFactoryPMClass
-jdo.tck.testdata = org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.companyListWithoutJoin.CompanyModelTestData
jdo.tck.mapping = 10
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTestList
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyM-MRelationships.conf b/tck/src/main/resources/conf/companyM-MRelationships.conf
index 8f3faf168..07dd6f728 100644
--- a/tck/src/main/resources/conf/companyM-MRelationships.conf
+++ b/tck/src/main/resources/conf/companyM-MRelationships.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with M-M relationships.
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyM-MRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsM_MData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyMapWithoutJoin.conf b/tck/src/main/resources/conf/companyMapWithoutJoin.conf
index 0bb2275f4..497888222 100644
--- a/tck/src/main/resources/conf/companyMapWithoutJoin.conf
+++ b/tck/src/main/resources/conf/companyMapWithoutJoin.conf
@@ -15,7 +15,7 @@
jdo.tck.description = Completeness test with companyMapWithoutJoin model.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyMapWithoutJoin.CompanyFactoryPMClass
-jdo.tck.testdata = org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.companyMapWithoutJoin.CompanyModelTestData
jdo.tck.mapping = 9
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTestMap
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyNoRelationships.conf b/tck/src/main/resources/conf/companyNoRelationships.conf
index d15599fed..dad6d6369 100644
--- a/tck/src/main/resources/conf/companyNoRelationships.conf
+++ b/tck/src/main/resources/conf/companyNoRelationships.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping, basic testdata with no relationships.
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyNoRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsNoData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyOverrideAnnotatedAllRelationshipsFCPM.conf b/tck/src/main/resources/conf/companyOverrideAnnotatedAllRelationshipsFCPM.conf
index 22c990310..c60cc6919 100644
--- a/tck/src/main/resources/conf/companyOverrideAnnotatedAllRelationshipsFCPM.conf
+++ b/tck/src/main/resources/conf/companyOverrideAnnotatedAllRelationshipsFCPM.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with mapping 11 overriding annotations,
and embedded objects, annotations.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.companyAnnotatedFC.CompanyFactoryAnnotatedFCPMDelegator
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 11
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyPMClass.conf b/tck/src/main/resources/conf/companyPMClass.conf
index 79480643a..f68662234 100644
--- a/tck/src/main/resources/conf/companyPMClass.conf
+++ b/tck/src/main/resources/conf/companyPMClass.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.company.CompanyFactoryPMClass
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/companyPMInterface.conf b/tck/src/main/resources/conf/companyPMInterface.conf
index 54dead410..949c2285a 100644
--- a/tck/src/main/resources/conf/companyPMInterface.conf
+++ b/tck/src/main/resources/conf/companyPMInterface.conf
@@ -17,6 +17,6 @@ jdo.tck.description = Completeness test with standard mapping, basic testdata wi
and embedded objects.
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.company.CompanyFactoryPMInterface
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/compoundIdentity.conf b/tck/src/main/resources/conf/compoundIdentity.conf
index 8ac42ca8a..c3e9550a3 100644
--- a/tck/src/main/resources/conf/compoundIdentity.conf
+++ b/tck/src/main/resources/conf/compoundIdentity.conf
@@ -16,6 +16,6 @@
jdo.tck.description = Completeness test with standard mapping using order model for compound identity testing
jdo.tck.mapping.companyfactory = org.apache.jdo.tck.pc.order.OrderFactoryPMClass
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTestOrder
-jdo.tck.testdata = org/apache/jdo/tck/pc/order/order.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.order.OrderModelTestData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/inheritance1.conf b/tck/src/main/resources/conf/inheritance1.conf
index 8e89157b2..b228554a8 100644
--- a/tck/src/main/resources/conf/inheritance1.conf
+++ b/tck/src/main/resources/conf/inheritance1.conf
@@ -19,6 +19,6 @@ Each table contains columns for the declared fields. \
Inheritance strategy: new-table for all classes.
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 1
jdo.tck.requiredOptions = javax.jdo.option.mapping.JoinedTablePerClass
diff --git a/tck/src/main/resources/conf/inheritance2.conf b/tck/src/main/resources/conf/inheritance2.conf
index 9adef2a5b..f83a94f95 100644
--- a/tck/src/main/resources/conf/inheritance2.conf
+++ b/tck/src/main/resources/conf/inheritance2.conf
@@ -26,7 +26,7 @@ and parttime employees. \
Inheritance strategy: new-table for all classes.
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 2
jdo.tck.requiredOptions = javax.jdo.option.mapping.NonJoinedTablePerConcreteClass \
javax.jdo.option.mapping.RelationSubclassTable
diff --git a/tck/src/main/resources/conf/inheritance3.conf b/tck/src/main/resources/conf/inheritance3.conf
index 3a0e8a088..514daa890 100644
--- a/tck/src/main/resources/conf/inheritance3.conf
+++ b/tck/src/main/resources/conf/inheritance3.conf
@@ -21,7 +21,7 @@ Insurance has inheritance strategy "subclass-table". \
MedicalInsurance and DentalInsurance have inheritance strategy "new-table".
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 3
jdo.tck.requiredOptions = javax.jdo.option.mapping.JoinedTablePerConcreteClass \
javax.jdo.option.mapping.RelationSubclassTable
diff --git a/tck/src/main/resources/conf/inheritance4.conf b/tck/src/main/resources/conf/inheritance4.conf
index 5a69ffd87..72cf837d9 100644
--- a/tck/src/main/resources/conf/inheritance4.conf
+++ b/tck/src/main/resources/conf/inheritance4.conf
@@ -19,6 +19,6 @@ PartTimeEmployee, FullTimeEmployee, MedicalInsurance, and DentalInsurance \
have inheritance strategy "superclass-table".
jdo.tck.mapping.companyfactory =
jdo.tck.classes = org.apache.jdo.tck.mapping.CompletenessTest
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 4
jdo.tck.requiredOptions =
diff --git a/tck/src/main/resources/conf/iut-log4j.properties b/tck/src/main/resources/conf/iut-log4j.properties
index c0a4505f1..83dc64aa9 100644
--- a/tck/src/main/resources/conf/iut-log4j.properties
+++ b/tck/src/main/resources/conf/iut-log4j.properties
@@ -25,12 +25,6 @@ log4j.rootLogger = ERROR, TCK
log4j.logger.org.apache.jdo.tck = INFO, TCK
log4j.additivity.org.apache.jdo.tck = false
-# SpringFramework loggers
-log4j.logger.org.springframework = ERROR, TCK
-log4j.additivity.org.springframework = false
-log4j.logger.org.apache.jdo.tck.pc.company.CompanyModelReader = ERROR, TCK
-log4j.logger.org.apache.jdo.tck.pc.mylib.MylibReader = ERROR, TCK
-
# TCK appenders
log4j.appender.TCK = org.apache.jdo.tck.util.TCKFileAppender
log4j.appender.TCK.File = tck.txt
diff --git a/tck/src/main/resources/conf/iut-log4j2.xml b/tck/src/main/resources/conf/iut-log4j2.xml
index ddb94cef0..faf7e9b0e 100644
--- a/tck/src/main/resources/conf/iut-log4j2.xml
+++ b/tck/src/main/resources/conf/iut-log4j2.xml
@@ -41,16 +41,7 @@
-
-
-
-
-
-
-
-
-
-
+
diff --git a/tck/src/main/resources/conf/jdori-log4j2.xml b/tck/src/main/resources/conf/jdori-log4j2.xml
index 853dcfd0c..2aa6cd8a6 100644
--- a/tck/src/main/resources/conf/jdori-log4j2.xml
+++ b/tck/src/main/resources/conf/jdori-log4j2.xml
@@ -41,16 +41,7 @@
-
-
-
-
-
-
-
-
-
-
+
diff --git a/tck/src/main/resources/conf/logging.properties b/tck/src/main/resources/conf/logging.properties
index 8dc631fa4..06ea4f6dd 100644
--- a/tck/src/main/resources/conf/logging.properties
+++ b/tck/src/main/resources/conf/logging.properties
@@ -40,11 +40,6 @@
# TCK logger
org.apache.jdo.tck.level = INFO
-# SpringFramework loggers
-org.springframework.level = SEVERE
-org.apache.jdo.tck.pc.company.CompanyModelReader.level = SEVERE
-org.apache.jdo.tck.pc.mylib.MylibReader = SEVERE
-
org.apache.jdo.tck.util.TCKFileHandler.fileName = tck.txt
org.apache.jdo.tck.util.TCKFileHandler.level = FINEST
diff --git a/tck/src/main/resources/conf/relationshipAllRelationships.conf b/tck/src/main/resources/conf/relationshipAllRelationships.conf
index 9704cdb6c..1761e23b8 100644
--- a/tck/src/main/resources/conf/relationshipAllRelationships.conf
+++ b/tck/src/main/resources/conf/relationshipAllRelationships.conf
@@ -16,7 +16,7 @@
jdo.tck.description = Managed relationship tests with standard mapping, \
basic testdata with all relationships.
jdo.tck.mapping.companyfactory =
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsAllData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
jdo.tck.classes = org.apache.jdo.tck.mapping.Relationship1To1AllRelationships \
diff --git a/tck/src/main/resources/conf/relationshipNoRelationships.conf b/tck/src/main/resources/conf/relationshipNoRelationships.conf
index 09e744365..0c12b05a0 100644
--- a/tck/src/main/resources/conf/relationshipNoRelationships.conf
+++ b/tck/src/main/resources/conf/relationshipNoRelationships.conf
@@ -16,7 +16,7 @@
jdo.tck.description = Managed relationship tests with standard mapping, \
basic testdata with no relationships.
jdo.tck.mapping.companyfactory =
-jdo.tck.testdata = org/apache/jdo/tck/pc/company/companyNoRelationships.xml
+jdo.tck.testdata = org.apache.jdo.tck.pc.company.data.RelationshipsNoData
jdo.tck.mapping = 0
jdo.tck.requiredOptions =
jdo.tck.classes = org.apache.jdo.tck.mapping.Relationship1To1NoRelationships \
diff --git a/tck/src/main/resources/conf/security.policy b/tck/src/main/resources/conf/security.policy
index 7ba11d365..a151e5ee3 100644
--- a/tck/src/main/resources/conf/security.policy
+++ b/tck/src/main/resources/conf/security.policy
@@ -18,26 +18,10 @@ grant codeBase "file:/D:/users\\michael\\.maven/repository/junit/jars/junit-3.8.
permission java.io.FilePermission "${user.home}${/}junit.properties", "read";
};
-// Springbeans code base
-grant codeBase "file:/D:/users\\michael\\.maven/repository/org.springframework/jars/spring-beans-2.0.jar" {
- permission java.lang.RuntimePermission "accessDeclaredMembers";
- permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
- permission java.lang.RuntimePermission "getClassLoader";
-};
-
-// Springcore code base
-grant codeBase "file:/D:/users\\michael\\.maven/repository/org.springframework/jars/spring-core-2.0.jar" {
- permission java.lang.RuntimePermission "accessDeclaredMembers";
-};
-
// TCK test classes
grant codeBase "file:/D:/projects/jdo/workspace/jdo/trunk/tck2/target/classes/-" {
permission javax.jdo.spi.JDOPermission "closePersistenceManagerFactory";
permission javax.jdo.spi.JDOPermission "setStateManager";
-// needed for Springbeans
- permission java.lang.RuntimePermission "accessDeclaredMembers";
- permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
- permission java.lang.RuntimePermission "getClassLoader";
};
// TCK PC enhanced classes
diff --git a/tck/src/main/resources/conf/simplelog.properties b/tck/src/main/resources/conf/simplelog.properties
index fa0bd8c8f..af1f1d5d0 100644
--- a/tck/src/main/resources/conf/simplelog.properties
+++ b/tck/src/main/resources/conf/simplelog.properties
@@ -31,10 +31,5 @@ org.apache.commons.logging.simplelog.defaultlog = error
# TCK logger
org.apache.commons.logging.simplelog.log.org.apache.jdo.tck = info
-# SpringFramework loggers
-org.apache.commons.logging.simplelog.log.org.springframework = error
-org.apache.commons.logging.simplelog.log.org.apache.jdo.tck.pc.company.CompanyModelReader = error
-org.apache.commons.logging.simplelog.log.org.apache.jdo.tck.pc.mylib.MylibReader = error
-
# JDO vendor specific loggers
#org.apache.commons.logging.simplelog.log. = info
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/company1-1Relationships.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/company1-1Relationships.xml
deleted file mode 100644
index 9cb7ac029..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/company1-1Relationships.xml
+++ /dev/null
@@ -1,239 +0,0 @@
-
-
-
-
- Company instances for CompletenessTest with 1-1 relationships
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
- 1
- Development
-
-
-
- 2
- Human Resources
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
- 1/Jan/1999
- 20000
- 40
-
-
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
- 1/Jul/2003
- 10000
- 40
-
-
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
- 15/Aug/2002
- 15
- 19
-
-
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
- 15/Apr/2001
- 13
-
-
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
- 15/Aug/1998
- 45000
-
-
-
-
-
-
-
- 1
- Unter den Linden 1
- Berlin
-
- 12345
- Germany
-
-
- 2
- Broadway 1
- New York
- NY
- 10000
- USA
-
-
- 3
- Market St.
- San Francisco
- CA
- 94102
- USA
-
-
-
- 1
- Carrier1
- PPO
-
-
-
-
- 2
- Carrier2
- HMO
-
-
-
-
- 3
- Carrier3
- HMO
-
-
-
-
- 4
- Carrier4
- HMO
-
-
-
-
- 5
- Carrier5
- HMO
-
-
-
-
- 11
- Carrier1
- 99.999
-
-
-
-
- 12
- Carrier2
- 99.999
-
-
-
-
- 13
- Carrier3
- 99.999
-
-
-
-
- 14
- Carrier4
- 99.999
-
-
-
-
- 15
- Carrier5
- 99.999
-
-
-
-
- 1
- orange
- 2500000.99
-
-
- 2
- blue
- 50000.00
-
-
- 3
- green
- 2000.99
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/company1-MRelationships.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/company1-MRelationships.xml
deleted file mode 100644
index c4fb6aeee..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/company1-MRelationships.xml
+++ /dev/null
@@ -1,238 +0,0 @@
-
-
-
-
- Company instances for CompletenessTest with 1-m relationships
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
-
-
-
-
-
-
- 1
- Development
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- Human Resources
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
- 1/Jan/1999
- 20000
- 40
-
-
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
- 1/Jul/2003
- 10000
- 40
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
- 15/Aug/2002
- 15
- 19
-
-
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
- 15/Apr/2001
- 13
-
-
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
- 15/Aug/1998
- 45000
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Unter den Linden 1
- Berlin
-
- 12345
- Germany
-
-
- 2
- Broadway 1
- New York
- NY
- 10000
- USA
-
-
- 3
- Market St.
- San Francisco
- CA
- 94102
- USA
-
-
-
- 1
- Carrier1
- PPO
-
-
-
- 2
- Carrier2
- HMO
-
-
-
- 3
- Carrier2
- HMO
-
-
-
- 4
- Carrier2
- 99.999
-
-
-
- 1
- orange
- 2500000.99
-
-
- 2
- blue
- 50000.00
-
-
- 3
- green
- 2000.99
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyAllRelationships.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyAllRelationships.xml
deleted file mode 100644
index afc493719..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyAllRelationships.xml
+++ /dev/null
@@ -1,406 +0,0 @@
-
-
-
-
- Company instances for CompletenessTest with all relationships
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
-
-
-
-
-
-
-
- 1
- Development
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- Human Resources
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
-
- 1/Jan/1999
- 20000
- 40
-
-
-
-
- 1111
- 123456-1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
-
- 1/Jul/2003
- 10000
- 40
-
-
-
-
- 2222
- 123456-2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
-
- 15/Aug/2002
- 15
- 19
-
-
-
-
- 3333
- 123456-3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
-
- 15/Apr/2001
- 13
-
-
-
-
- 3343
- 124456-3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
-
- 15/Aug/1998
- 45000
-
-
-
-
- 3363
- 126456-3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Unter den Linden 1
- Berlin
-
- 12345
- Germany
-
-
- 2
- Broadway 1
- New York
- NY
- 10000
- USA
-
-
- 3
- Market St.
- San Francisco
- CA
- 94102
- USA
-
-
-
- 1
- Carrier1
- PPO
-
-
-
-
- 2
- Carrier2
- HMO
-
-
-
-
- 3
- Carrier3
- HMO
-
-
-
-
- 4
- Carrier4
- HMO
-
-
-
-
- 5
- Carrier5
- HMO
-
-
-
-
- 11
- Carrier1
- 99.999
-
-
-
-
- 12
- Carrier2
- 99.999
-
-
-
-
- 13
- Carrier3
- 99.999
-
-
-
-
- 14
- Carrier4
- 99.999
-
-
-
-
- 15
- Carrier5
- 99.999
-
-
-
-
- 1
- orange
- 2500000.99
-
-
-
-
-
-
-
-
-
- 2
- blue
- 50000.00
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- green
- 2000.99
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyEmbedded.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyEmbedded.xml
deleted file mode 100644
index 41c3eab6c..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyEmbedded.xml
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
- Company instances for CompletenessTest with embedded relationships
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
-
- 1
- Development
-
-
-
- 2
- Human Resources
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
-
- 1/Jan/1999
- 20000
- 40
-
-
- 1111
- 123456-1
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
-
- 1/Jul/2003
- 10000
- 40
-
-
- 2222
- 123456-2
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
-
- 15/Aug/2002
- 15
- 19
-
-
- 3333
- 123456-3
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
-
- 15/Apr/2001
- 13
-
-
- 3343
- 124456-3
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
-
- 15/Aug/1998
- 45000
-
-
- 3363
- 126456-3
-
-
-
-
-
- 1
- Unter den Linden 1
- Berlin
-
- 12345
- Germany
-
-
- 2
- Broadway 1
- New York
- NY
- 10000
- USA
-
-
- 3
- Market St.
- San Francisco
- CA
- 94102
- USA
-
-
-
- 1
- Carrier1
- PPO
-
-
-
- 2
- Carrier2
- HMO
-
-
-
- 3
- Carrier2
- HMO
-
-
-
- 4
- Carrier2
- 99.999
-
-
-
- 1
- orange
- 2500000.99
-
-
- 2
- blue
- 50000.00
-
-
- 3
- green
- 2000.99
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForNavigationTests.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForNavigationTests.xml
deleted file mode 100644
index 13a5b7b87..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForNavigationTests.xml
+++ /dev/null
@@ -1,562 +0,0 @@
-
-
-
-
- Company instances for navigation query testing
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
-
-
-
-
-
-
-
- 1
- Comfy Room
-
-
- 2
- Large Discussion Room
-
-
- 3
- Conference Room
-
-
-
- 1
- Development
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- Human Resources
-
-
-
-
-
-
-
-
-
-
-
-
- 0
- emp0First
- emp0Last
- emp0Middle
- 10/Jul/1962
-
- 1/Jan/1997
- 50000
- 40
-
-
-
-
- 3232
- 223311-1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
-
- 1/Jan/1999
- 20000
- 40
-
-
-
-
- 1111
- 123456-1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
-
- 1/Jul/2003
- 10000
- 40
-
-
-
-
- 2222
- 123456-2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
-
- 15/Aug/2002
- 15
- 19
-
-
-
-
- 3333
- 123456-3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
-
- 15/Apr/2001
- 25000
- 40
-
-
-
-
- 3343
- 124456-3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
-
- 1/Nov/2002
- 18000
- 35
-
-
-
-
- 3363
- 126456-3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 6
- emp6First
- emp6Last
- emp6Middle
- 10/Jun/1969
-
- 1/Jun/2002
- 22000
- 40
-
-
-
-
-
-
- 7
- emp7First
- emp7Last
- emp7Middle
- 10/Jun/1970
-
- 1/Jan/2000
- 40000
- 40
-
-
-
-
-
-
-
-
-
-
-
- 8
- emp8First
- emp8Last
- emp8Middle
- 22/Dec/1975
-
- 1/Aug/2003
- 10000
- 15
-
-
-
-
-
-
- 9
- emp9First
- emp9Last
- emp9Middle
- 5/Sep/1972
-
- 1/May/2002
- 12000
- 20
-
-
-
-
-
-
- 10
- emp10First
- emp10Last
- emp10Middle
- 5/Sep/1972
-
- 1/Oct/2002
- 24000
- 40
-
-
-
-
-
-
- 1
- Unter den Linden 1
- Berlin
-
- 12345
- Germany
-
-
- 2
- Broadway 1
- New York
- NY
- 10000
- USA
-
-
- 3
- Market St.
- San Francisco
- CA
- 94102
- USA
-
-
-
- 1
- Carrier1
- PPO
-
-
-
-
- 2
- Carrier2
- HMO
-
-
-
-
- 3
- Carrier3
- HMO
-
-
-
-
- 4
- Carrier4
- HMO
-
-
-
-
- 5
- Carrier5
- HMO
-
-
-
-
- 98
- Carrier98
- HMO
-
-
-
-
- 11
- Carrier1
- 99.995
-
-
-
-
- 12
- Carrier2
- 99.996
-
-
-
-
- 13
- Carrier3
- 99.997
-
-
-
-
- 14
- Carrier4
- 99.998
-
-
-
-
- 15
- Carrier5
- 99.999
-
-
-
-
- 99
- Carrier99
-
-
-
-
-
- 1
- orange
- 2500000.99
-
-
-
-
-
-
-
-
-
- 2
- blue
- 50000.00
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- green
- 2000.99
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForQueryTests.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForQueryTests.xml
deleted file mode 100644
index 755351aca..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForQueryTests.xml
+++ /dev/null
@@ -1,437 +0,0 @@
-
-
-
-
- Company instances for query testing
-
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
-
-
-
-
-
-
-
- 1
- Comfy Room
-
-
- 2
- Large Discussion Room
-
-
- 3
- Conference Room
-
-
-
- 1
- Development
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- Human Resources
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
-
- 1/Jan/1999
- 20000
- 40
-
-
-
-
- 1111
- 123456-1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
-
- 1/Jul/2003
- 10000
- 40
-
-
-
-
- 2222
- 123456-2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
-
- 15/Aug/2002
- 15
- 19
-
-
-
-
- 3333
- 123456-3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
-
- 15/Apr/2001
- 13
-
-
-
-
- 3343
- 124456-3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
-
- 15/Aug/1998
- 45000
-
-
-
-
- 3363
- 126456-3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Unter den Linden 1
- Berlin
-
- 12345
- Germany
-
-
- 2
- Broadway 1
- New York
- NY
- 10000
- USA
-
-
- 3
- Market St.
- San Francisco
- CA
- 94102
- USA
-
-
-
- 1
- Carrier1
- PPO
-
-
-
-
- 2
- Carrier2
- HMO
-
-
-
-
- 3
- Carrier3
- HMO
-
-
-
-
- 4
- Carrier4
- HMO
-
-
-
-
- 5
- Carrier5
- HMO
-
-
-
-
- 11
- Carrier1
- 99.995
-
-
-
-
- 12
- Carrier2
- 99.996
-
-
-
-
- 13
- Carrier3
- 99.997
-
-
-
-
- 14
- Carrier4
- 99.998
-
-
-
-
- 15
- Carrier5
- 99.999
-
-
-
-
- 99
- Carrier99
-
-
-
-
- 1
- orange
- 2500000.99
-
-
-
-
-
-
-
-
-
- 2
- blue
- 50000.00
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- green
- 2000.99
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSampleQueriesTest.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSampleQueriesTest.xml
deleted file mode 100644
index 82fe49736..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSampleQueriesTest.xml
+++ /dev/null
@@ -1,486 +0,0 @@
-
-
-
-
- Company instances for query testing
-
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
-
-
-
-
-
-
-
-
- 1
- Comfy Room
-
-
- 2
- Large Discussion Room
-
-
- 3
- Conference Room
-
-
-
- 1
- R&D
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- Sales
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- Marketing
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Michael
- Bouschen
-
- 10/Jun/1970
-
- 1/Jan/1999
- 40000
- 40
-
-
-
-
- 1111
- 123456-1
-
-
-
-
- German
- English
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- Craig
- L.
- Russell
- 22/Dec/1975
-
- 1/Jul/2003
- 50000
- 40
-
-
-
-
- 2222
- 123456-2
-
-
-
-
- English
- Japanese
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- Joe
- Doe
-
- 5/Sep/1972
-
- 15/Aug/2002
- 15
- 19
-
-
-
-
- 3333
- 123456-3
-
-
-
-
- English
- French
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4
- Jane
- Roe
-
- 6/Sep/1973
-
- 15/Apr/2001
- 13
-
-
-
-
- 3343
- 124456-3
-
-
-
-
- English
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 5
- Tillmann
- Zäschke
-
- 5/Jul/1979
-
- 15/Aug/1999
- 45000
-
-
-
-
- 3363
- 126456-3
-
-
-
-
- German
- English
- French
- Japanese
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Unter den Linden 1
- Berlin
-
- 12345
- Germany
-
-
- 2
- Broadway 1
- New York
- NY
- 10000
- USA
-
-
- 3
- Market St.
- San Francisco
- CA
- 94102
- USA
-
-
-
- 1
- Carrier1
- PPO
-
-
-
-
- 2
- Carrier2
- HMO
-
-
-
-
- 3
- Carrier3
- HMO
-
-
-
-
- 4
- Carrier4
- HMO
-
-
-
-
- 5
- Carrier5
- HMO
-
-
-
-
- 11
- Carrier1
- 99.995
-
-
-
-
- 12
- Carrier2
- 99.996
-
-
-
-
- 13
- Carrier3
- 99.997
-
-
-
-
- 14
- Carrier4
- 99.998
-
-
-
-
- 15
- Carrier5
- 99.999
-
-
-
-
- 99
- Carrier99
-
-
-
-
- 1
- orange
- 2500000.99
-
-
-
-
-
-
-
-
-
- 2
- blue
- 50000.00
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- green
- 2000.99
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSubqueriesTests.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSubqueriesTests.xml
deleted file mode 100644
index 389bb7f53..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSubqueriesTests.xml
+++ /dev/null
@@ -1,282 +0,0 @@
-
-
-
-
- Company instances for query testing
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
-
-
-
-
-
-
-
- 1
- Comfy Room
-
-
- 2
- Large Discussion Room
-
-
- 3
- Conference Room
-
-
-
- 1
- Development
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- Human Resources
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
-
- 1/Jan/1999
- 30000
- 40
-
-
-
-
-
-
-
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
-
- 1/Jul/2003
- 20000
- 40
-
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
-
- 15/Aug/2002
- 10000
- 25
-
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
-
- 15/Apr/2001
- 25000
- 40
-
-
-
-
-
-
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
-
- 1/Nov/2002
- 18000
- 35
-
-
-
-
-
- 6
- emp6First
- emp6Last
- emp6Middle
- 10/Jun/1969
-
- 1/Jun/2002
- 22000
- 40
-
-
-
-
-
- 7
- emp7First
- emp7Last
- emp7Middle
- 10/Jun/1970
-
- 1/Jan/2000
- 40000
- 40
-
-
-
-
-
-
-
-
-
-
- 8
- emp8First
- emp8Last
- emp8Middle
- 22/Dec/1975
-
- 1/Aug/2003
- 10000
- 15
-
-
-
-
-
- 9
- emp9First
- emp9Last
- emp9Middle
- 5/Sep/1972
-
- 1/May/2002
- 12000
- 20
-
-
-
-
-
- 10
- emp10First
- emp10Last
- emp10Middle
- 5/Sep/1972
-
- 1/Oct/2002
- 24000
- 40
-
-
-
-
-
-
- 1
- Unter den Linden 1
- Berlin
-
- 12345
- Germany
-
-
- 2
- Broadway 1
- New York
- NY
- 10000
- USA
-
-
- 3
- Market St.
- San Francisco
- CA
- 94102
- USA
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyM-MRelationships.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyM-MRelationships.xml
deleted file mode 100644
index 310d02848..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyM-MRelationships.xml
+++ /dev/null
@@ -1,246 +0,0 @@
-
-
-
-
- Company instances for CompletenessTest with m-m relationships
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
- 1
- Development
-
-
-
- 2
- Human Resources
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
- 1/Jan/1999
- 20000
- 40
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
- 1/Jul/2003
- 10000
- 40
-
-
-
-
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
- 15/Aug/2002
- 15
- 19
-
-
-
-
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
- 15/Apr/2001
- 13
-
-
-
-
-
-
-
-
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
- 15/Aug/1998
- 45000
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Unter den Linden 1
- Berlin
-
- 12345
- Germany
-
-
- 2
- Broadway 1
- New York
- NY
- 10000
- USA
-
-
- 3
- Market St.
- San Francisco
- CA
- 94102
- USA
-
-
-
- 1
- Carrier1
- PPO
-
-
-
- 2
- Carrier2
- HMO
-
-
-
- 3
- Carrier2
- HMO
-
-
-
- 4
- Carrier2
- 99.999
-
-
-
- 1
- orange
- 2500000.99
-
-
-
-
-
-
-
-
-
- 2
- blue
- 50000.00
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- green
- 2000.99
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyNoRelationships.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyNoRelationships.xml
deleted file mode 100644
index 683c97718..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyNoRelationships.xml
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
- Company instances for CompletenessTest with no relationships
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
- 1
- Development
-
-
-
- 2
- Human Resources
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
- 1/Jan/1999
- 20000
- 40
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
- 1/Jul/2003
- 10000
- 40
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
- 15/Aug/2002
- 15
- 19
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
- 15/Apr/2001
- 13
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
- 15/Aug/1998
- 45000
-
-
-
- 1
- Carrier1
- PPO
-
-
-
- 2
- Carrier2
- HMO
-
-
-
- 3
- Carrier2
- HMO
-
-
-
- 4
- Carrier2
- 99.999
-
-
-
- 1
- orange
- 2500000.99
-
-
- 2
- blue
- 50000.00
-
-
- 3
- green
- 2000.99
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml
deleted file mode 100644
index f7a4c9f1f..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/companyListWithoutJoin/companyListWithoutJoin.xml
+++ /dev/null
@@ -1,154 +0,0 @@
-
-
-
-
- Company instances for CompletenessTest with Map without join table
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
-
-
-
-
-
-
- 1
- Development
-
-
-
-
-
-
-
-
-
-
-
- 2
- Human Resources
-
-
-
-
-
-
-
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
- 1/Jan/1999
- 60000
- 40
-
-
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
- 1/Jul/2003
- 47000
- 40
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
- 15/Aug/2002
- 67.00
- 19
-
-
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
- 15/Apr/2001
- 37.00
-
-
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
- 15/Aug/1998
- 73000
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml
deleted file mode 100644
index 2909f7f5e..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/companyMapWithoutJoin/companyMapWithoutJoin.xml
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
- Company instances for CompletenessTest with Map without join table
-
-
-
-
-
-
-
-
-
-
- 1
- Sun Microsystems, Inc.
- 11/Apr/1952
-
-
-
-
-
-
-
-
-
- 1
- Development
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2
- Human Resources
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- emp1First
- emp1Last
- emp1Middle
- 10/Jun/1970
- 1/Jan/1999
- role1
- 60000
- 40
-
-
-
-
-
-
- 2
- emp2First
- emp2Last
- emp2Middle
- 22/Dec/1975
- 1/Jul/2003
- role2
- 47000
- 40
-
-
-
-
-
-
-
-
-
-
-
-
-
- 3
- emp3First
- emp3Last
- emp3Middle
- 5/Sep/1972
- 15/Aug/2002
- role3
- 67.00
- 19
-
-
-
-
-
-
- 4
- emp4First
- emp4Last
- emp4Middle
- 6/Sep/1973
- 15/Apr/2001
- role4
- 37.00
-
-
-
-
-
-
- 5
- emp5First
- emp5Last
- emp5Middle
- 5/Jul/1962
- 15/Aug/1998
- role5
- 73000
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/mylib/mylibForQueryTests.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/mylib/mylibForQueryTests.xml
deleted file mode 100644
index ee000b321..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/mylib/mylibForQueryTests.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1
- 4
- 4
- 4
- 4
- 4.0
- 4.0
- 4.0
- 4.0
-
-
-
- 2
- -4
- -4
- -4
- -4
- -4.0
- -4.0
- -4.0
- -4.0
-
-
-
- 1
- 10
- 10
-
-
-
- 2
- 20
- 20
-
-
-
- 3
- O
- O
- Even
-
-
diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/order/order.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/order/order.xml
deleted file mode 100644
index ab37946df..000000000
--- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/order/order.xml
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
- Order instances for CompletenessTest of compound identity
-
-
-
-
-
-
-
-
-
-
- 1
- 3
-
-
-
-
-
-
-
-
-
-
-
- 1
-
-
- SunRay
- 15
-
-
-
-
-
-
- 1
-
-
- Sun Ultra 40
- 3
-
-
-
-
-