/******************************************************************************* * Copyright (c) 2000, 2018 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.team.internal.ccvs.ui.actions; import java.lang.reflect.InvocationTargetException; import org.eclipse.jface.action.IAction; import org.eclipse.jface.window.Window; import org.eclipse.swt.widgets.Display; import org.eclipse.team.internal.ccvs.ui.CVSUIMessages; import org.eclipse.team.internal.ccvs.ui.IHelpContextIds; import org.eclipse.team.internal.ccvs.ui.operations.ReplaceOperation; public class ReplaceWithRemoteAction extends WorkspaceTraversalAction { public void execute(IAction action) throws InvocationTargetException, InterruptedException { final ReplaceOperation replaceOperation = new ReplaceOperation(getTargetPart(), getCVSResourceMappings(), resourceCommonTag); if (hasOutgoingChanges(replaceOperation)) { final boolean[] keepGoing = new boolean[] { true }; Display.getDefault().syncExec(new Runnable() { public void run() { OutgoingChangesDialog dialog = new OutgoingChangesDialog(getShell(), replaceOperation.getScopeManager(), CVSUIMessages.ReplaceWithTagAction_2, CVSUIMessages.ReplaceWithTagAction_0, CVSUIMessages.ReplaceWithTagAction_1); dialog.setHelpContextId(IHelpContextIds.REPLACE_OUTGOING_CHANGES_DIALOG); int result = dialog.open(); keepGoing[0] = result == Window.OK; } }); if (!keepGoing[0]) return; } replaceOperation.run(); } /** * @see org.eclipse.team.internal.ccvs.ui.actions.CVSAction#getErrorTitle() */ protected String getErrorTitle() { return CVSUIMessages.ReplaceWithRemoteAction_problemMessage; } /** * @see org.eclipse.team.internal.ccvs.ui.actions.WorkspaceAction#isEnabledForAddedResources() */ protected boolean isEnabledForAddedResources() { return false; } /* (non-Javadoc) * @see org.eclipse.team.internal.ccvs.ui.actions.WorkspaceAction#isEnabledForNonExistantResources() */ protected boolean isEnabledForNonExistantResources() { return true; } /* * Update the text label for the action based on the tags in the * selection. * * @see TeamAction#setActionEnablement(org.eclipse.jface.action.IAction) */ protected void setActionEnablement(IAction action) { super.setActionEnablement(action); action.setText(calculateActionTagValue()); } } r">
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2009-06-23 14:29:03 +0000
committernitind2009-06-23 14:29:03 +0000
commita1f384bc6a377a03c3ac30dd5d4dc47c771d0b56 (patch)
treef11bb5dcf1ade32c60df1b78ba92e450f8da8d56
parente1817094ff44fb1d2a51e288156db7e225823a02 (diff)
downloadwebtools.sourceediting.xpath.tests-200907100454.tar.gz
webtools.sourceediting.xpath.tests-200907100454.tar.xz
webtools.sourceediting.xpath.tests-200907100454.zip
This commit was manufactured by cvs2svn to create tag 'v200907100454'.v200907100454
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/.classpath11
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/.project28
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/.settings/org.eclipse.jdt.core.prefs7
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/META-INF/MANIFEST.MF16
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/about.html34
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/build.properties9
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/plugin.properties3
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xml/xpath/core/tests/XPathCoreTestPlugin.java52
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xml/xpath/core/tests/XPathCoreTests.java19
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xsl/internal/core/xpath/tests/TestXSLXPathHelper.java74
-rw-r--r--tests/org.eclipse.wst.xml.xpath.core.tests/test.xml115
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs029.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs030.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs031.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs032.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs033.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs034.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs035.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs036.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs037.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs038.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs039.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs040.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs041.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs042.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs043.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs044.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs045.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs046.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs047.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs048.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs049.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs050.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs051.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs052.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs053.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs054.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs055.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs056.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs057.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs058.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs059.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs060.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs061.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs062.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs063.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs064.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs065.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs066.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs067.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs068.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs069.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs070.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs071.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs072.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs073.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs074.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs075.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs076.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs077.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs078.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs079.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs080.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs081.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs082.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs083.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs084.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs085.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs086.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs087.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs088.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs089.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs090.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs091.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs092.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs093.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs094.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs095.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs096.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs097.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs098.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs099.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs100.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs101.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs102.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs103.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs104.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs105.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs106.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs107.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs108.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs109.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs110.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs111.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs112.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs113.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs114.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs115.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs116.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs117.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs118.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs119.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs120.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs121.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs122.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs123.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs124.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs125.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs126.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs127.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs128.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs129.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs130.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs131.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs132.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs133.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs134.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs135.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs136.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs137.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs138.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs139.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs140.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs141.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs142.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs143.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs144.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs145.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs146.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs147.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs148.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs149.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs150.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs151.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs152.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs153.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs154.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs155.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs156.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs157.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs158.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs159.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs160.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs161.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs162.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs163.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs164.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs165.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs166.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs167.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs168.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs169.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs170.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs171.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs172.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs173.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs174.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs175.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs176.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs177.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs178.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs179.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs180.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs181.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs182.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs183.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs184.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs185.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs186.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs187.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs188.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs189.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs190.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs191.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs192.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs193.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs194.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs195.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs196.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs197.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs198.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs199.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs200.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs201.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs202.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs203.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs204.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs205.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs206.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs207.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs208.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs209.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs210.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs211.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs212.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs213.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs214.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs215.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs216.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs217.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs218.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs219.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs220.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs221.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs222.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs223.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs224.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs225.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs226.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs227.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs228.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs229.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs230.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs231.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs232.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs233.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs234.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs235.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs236.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs237.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs238.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs239.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs240.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs241.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs242.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs243.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs244.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs245.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs246.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs247.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs248.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs249.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs250.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs251.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs252.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs253.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs254.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs255.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs256.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs257.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs258.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs259.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs260.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs261.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs262.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs263.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs264.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs265.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs266.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs267.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs268.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs269.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs270.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs271.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs272.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs273.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs274.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs275.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs276.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs277.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs278.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs279.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs280.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs281.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs282.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs283.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs284.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs285.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs286.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs287.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs288.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs289.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs290.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs291.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs292.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs293.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs294.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs295.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs296.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs297.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs298.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs299.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs300.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs301.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs302.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs303.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs304.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs305.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs306.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs307.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs308.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs309.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs310.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs311.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs312.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs313.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs314.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs315.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs316.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs317.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs318.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs319.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs320.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs321.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs322.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs323.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs324.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs325.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs326.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs327.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs328.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs329.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs330.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs331.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs332.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs333.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs334.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs335.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs336.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs337.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs338.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs339.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs340.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs341.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs342.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs343.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs344.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs345.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs346.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs347.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs348.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs349.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs350.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs351.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs352.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs353.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs354.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs355.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs356.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs357.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs358.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs359.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs360.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs361.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs362.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs363.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs364.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs365.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs366.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs367.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs368.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs369.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs370.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs371.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs372.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs373.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs374.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs375.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs376.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs377.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs378.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs379.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs380.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs381.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs382.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs383.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs384.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs385.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs386.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs387.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs388.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs389.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs390.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs391.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs392.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs393.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs394.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs395.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs396.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs397.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs398.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs399.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs400.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs401.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs402.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs403.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs404.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs405.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs406.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs407.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs408.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs409.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs410.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs411.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs412.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs413.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs414.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs415.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs416.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs417.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs418.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs419.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs420.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs421.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs422.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs423.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs424.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs425.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs426.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs427.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs428.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs429.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs430.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs431.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs432.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs433.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs434.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs435.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs436.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs437.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs438.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs439.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs440.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs441.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs442.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs443.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs444.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs445.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs446.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs447.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs448.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs449.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs450.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs451.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs452.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs453.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs454.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs455.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs456.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs457.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs458.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs459.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs460.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs461.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs462.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs463.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs464.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs465.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs466.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs467.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs468.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs469.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs470.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs471.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs472.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs473.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs474.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs475.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs476.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs477.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs478.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs479.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs480.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs481.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs482.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs483.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs484.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs485.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs486.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs487.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs488.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs489.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs490.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs491.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs492.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs493.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs494.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs495.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs496.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs497.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs498.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs499.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs500.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs501.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs502.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs503.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs504.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs505.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs506.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs507.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs508.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs509.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs510.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs511.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs512.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs513.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs514.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs515.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs516.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs517.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs518.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs519.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs520.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs521.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs522.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs523.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs524.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs525.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs526.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs527.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs528.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs529.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs530.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs531.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs532.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs533.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs534.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs535.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs536.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs537.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs538.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs539.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs540.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs541.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs542.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs543.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs544.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs545.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs546.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs547.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs548.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs549.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs550.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs551.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs552.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs553.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs554.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs555.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs556.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs557.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs558.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs559.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs560.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs561.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs562.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs563.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs564.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs565.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs566.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs567.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs568.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs569.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs570.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs571.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs572.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs573.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs574.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs575.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs576.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs577.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs578.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs579.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs580.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs581.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs582.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs583.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs584.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs585.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs586.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs587.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs588.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs589.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs590.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs591.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs592.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs593.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs594.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs595.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs596.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs597.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs598.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs599.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs600.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs601.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs602.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs603.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs604.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs605.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs606.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs607.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs608.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs609.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs610.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs611.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs612.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs613.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs614.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs615.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs616.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs617.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs618.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs619.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs620.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs621.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs622.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs623.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs624.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs625.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs626.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs627.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs628.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs629.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs630.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs631.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs632.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs633.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs634.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs635.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs636.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs637.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs638.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs639.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs640.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs641.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs642.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs643.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs644.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs645.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs646.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs647.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs648.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof1.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof10.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof100.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof101.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof102.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof103.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof104.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof105.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof106.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof107.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof108.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof109.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof11.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof110.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof12.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof13.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof14.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof15.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof16.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof17.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof18.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof19.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof2.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof20.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof21.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof22.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof23.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof24.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof25.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof26.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof27.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof28.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof29.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof3.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof30.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof31.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof32.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof33.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof34.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof35.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof36.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof37.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof38.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof39.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof4.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof40.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof41.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof42.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof43.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof44.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof45.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof46.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof47.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof48.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof49.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof5.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof50.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof51.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof52.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof53.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof54.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof55.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof56.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof57.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof58.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof59.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof6.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof60.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof61.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof62.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof63.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof64.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof65.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof66.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof67.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof68.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof69.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof7.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof70.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof71.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof72.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof73.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof74.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof75.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof76.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof77.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof78.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof79.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof8.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof80.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof81.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof82.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof83.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof84.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof85.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof86.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof87.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof88.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof89.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof9.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof90.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof91.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof92.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof93.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof94.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof95.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof96.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof97.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof98.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof99.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-11.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-12.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-13.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-14.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-15.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-16.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-17.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-18.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-19.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-20.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-21.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-22.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-23.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-24.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-25.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-7.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-8.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc1.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc10.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc11.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc12.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc13.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc14.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc15.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc16.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc17.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc18.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc19.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc2.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc20.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc21.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc22.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc23.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc24.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc25.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc7.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc8.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc9.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-100.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1000.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1001.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1002.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1003.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1004.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1005.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1006.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1008.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-101.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1010.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1011.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1012.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1013.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1014.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1015.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1016.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1017.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1018.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1019.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-102.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1020.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1021.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1022.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1023.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1024.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1025.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1026.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1027.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1028.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1029.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-103.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1030.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1031.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1032.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1033.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1034.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1035.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1036.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1037.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1038.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1039.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-104.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1040.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1041.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1042.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1043.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1044.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1045.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1046.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1047.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1048.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1049.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-105.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1050.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1051.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1052.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1053.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1054.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1055.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1056.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1057.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1058.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1059.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-106.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1060.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1061.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1062.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1063.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1064.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1065.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1066.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1067.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1068.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1069.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-107.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1070.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1071.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1072.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1073.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1074.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1075.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1076.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1077.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1078.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1079.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-108.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1080.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1081.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1082.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1083.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1084.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1085.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1086.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1087.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1088.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1089.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-109.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1090.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1091.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1092.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1093.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1094.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1095.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1096.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1097.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1098.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1099.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-110.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1100.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1101.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1102.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1103.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1104.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1105.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1106.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1107.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1108.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1109.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-111.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1110.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1111.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1112.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1113.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1114.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1115.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1116.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1117.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1118.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1119.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-112.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1120.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1121.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1122.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1123.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1124.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1125.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1126.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1127.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1128.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1129.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-113.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1130.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1131.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1132.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1133.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1134.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1135.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1136.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1137.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1138.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1139.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-114.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1140.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1141.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1142.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1143.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1144.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1145.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1146.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1147.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1148.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1149.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-115.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1150.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1151.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1152.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1153.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1154.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1155.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1156.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1157.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1158.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1159.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-116.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1160.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1161.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1162.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1163.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1164.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1165.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1166.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1167.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1168.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1169.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-117.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1170.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1171.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1172.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1173.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1174.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1175.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1176.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1177.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1178.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1179.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-118.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1180.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1181.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1182.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1183.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1184.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1185.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1186.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1187.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1188.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1189.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-119.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1190.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1191.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1192.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1193.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1194.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1195.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1196.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1197.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1198.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1199.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-120.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1200.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1201.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1202.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1203.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1204.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1205.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1206.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1207.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1208.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1209.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-121.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1210.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1211.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1212.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1213.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1214.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1215.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1216.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1217.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1218.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1219.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-122.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1220.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1221.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1222.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1223.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1224.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1225.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1226.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1227.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1228.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1229.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-123.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1230.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1231.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1232.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1233.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1234.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1235.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1236.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1237.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1238.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1239.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-124.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1240.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1241.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1242.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1243.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1244.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1245.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1246.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1247.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1248.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1249.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-125.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1250.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1251.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1252.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1253.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1254.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1255.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1256.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1257.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1258.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1259.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-126.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1260.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1261.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1262.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1263.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1264.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1265.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1266.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1267.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1268.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1269.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-127.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1270.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1271.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1272.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1273.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1274.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1275.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1276.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1277.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1278.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1279.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-128.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1280.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1281.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1282.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1283.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1284.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1285.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1286.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1287.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1288.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1289.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-129.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1290.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1291.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1292.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1293.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1294.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1295.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1296.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1297.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1298.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1299.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-130.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1300.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1301.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1302.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1303.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1304.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1305.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1306.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1307.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1308.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1309.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-131.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1310.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1311.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1312.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1313.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1314.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1315.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1316.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1317.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1318.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1319.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-132.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1320.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1321.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1322.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1323.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1324.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1325.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1326.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1327.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1328.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1329.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-133.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1330.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1331.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1332.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1333.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1334.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1335.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1336.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1337.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1338.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1339.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-134.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1340.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1341.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1342.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1343.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1344.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1345.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1346.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1347.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1348.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1349.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-135.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1350.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1351.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1352.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1353.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1354.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1355.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1356.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1357.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1358.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1359.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-136.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1360.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1361.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1362.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1363.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1364.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1365.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1366.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1367.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1368.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1369.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-137.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1370.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1371.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1372.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1373.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1374.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1375.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1376.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1377.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1378.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1379.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-138.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1380.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1381.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1382.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1383.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1384.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1385.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1386.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1387.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1388.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1389.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-139.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1390.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1391.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1392.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1393.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1394.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1395.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1396.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1397.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1398.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1399.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-140.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1400.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1401.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1402.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1403.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1404.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1405.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1406.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1407.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1408.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1409.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-141.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1410.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1411.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1412.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1413.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1414.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1415.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1416.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1417.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1418.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1419.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-142.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1420.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1421.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1422.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1423.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1424.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1425.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1426.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1427.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1428.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1429.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-143.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1430.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1431.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1432.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1433.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1434.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1435.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1436.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1437.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1438.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1439.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-144.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1440.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1441.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1442.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1443.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1444.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1445.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1446.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1447.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1448.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1449.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-145.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1450.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1451.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1452.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1453.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1454.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1455.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1456.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1457.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1458.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1459.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1460.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1461.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1462.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1463.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1464.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1465.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1466.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1467.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1468.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1469.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1470.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1471.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1472.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1473.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1474.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1475.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1476.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1477.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1478.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1479.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-148.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1480.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1481.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1482.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1483.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1484.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1485.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1486.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1487.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1488.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1489.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-149.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1490.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1491.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1492.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1493.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1494.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1495.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-150.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-151.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-152.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-153.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-154.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-155.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-156.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-157.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-158.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-159.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-160.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-161.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-162.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-163.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-164.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-165.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-166.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-167.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-168.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-169.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-170.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-171.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-172.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-173.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-174.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-175.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-176.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-177.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-178.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-179.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-180.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-181.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-182.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-183.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-184.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-185.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-186.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-187.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-188.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-189.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-190.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-191.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-192.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-193.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-194.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-195.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-196.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-197.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-198.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-199.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-200.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-201.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-202.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-203.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-204.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-205.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-206.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-207.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-208.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-209.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-210.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-211.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-212.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-215.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-216.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-217.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-218.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-219.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-220.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-221.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-222.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-223.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-224.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-225.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-226.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-227.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-228.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-229.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-230.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-231.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-232.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-233.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-234.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-235.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-236.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-237.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-238.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-239.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-240.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-241.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-242.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-243.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-244.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-245.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-246.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-247.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-248.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-249.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-250.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-251.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-252.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-253.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-254.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-255.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-256.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-257.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-258.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-259.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-260.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-261.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-262.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-263.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-264.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-265.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-266.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-267.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-268.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-269.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-270.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-271.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-272.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-273.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-274.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-275.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-276.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-277.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-278.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-279.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-280.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-281.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-282.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-283.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-284.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-285.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-286.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-287.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-288.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-289.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-290.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-291.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-292.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-293.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-294.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-295.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-296.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-297.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-298.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-299.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-30.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-300.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-301.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-302.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-303.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-304.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-305.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-306.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-307.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-308.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-309.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-31.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-310.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-311.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-312.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-313.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-314.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-315.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-316.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-317.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-318.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-319.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-32.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-320.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-321.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-322.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-323.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-324.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-325.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-326.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-327.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-328.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-329.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-33.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-330.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-331.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-332.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-333.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-334.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-335.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-336.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-337.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-338.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-339.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-34.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-340.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-341.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-342.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-343.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-344.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-345.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-346.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-347.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-348.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-349.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-35.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-350.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-351.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-352.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-353.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-354.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-355.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-356.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-357.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-358.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-359.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-36.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-360.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-361.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-362.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-363.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-364.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-365.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-366.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-367.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-368.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-369.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-37.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-370.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-371.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-372.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-373.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-374.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-375.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-376.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-377.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-378.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-379.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-38.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-380.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-381.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-382.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-383.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-384.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-385.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-386.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-387.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-388.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-389.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-39.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-390.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-391.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-392.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-393.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-394.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-395.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-396.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-397.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-398.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-399.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-40.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-400.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-401.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-402.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-403.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-404.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-405.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-406.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-407.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-408.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-409.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-41.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-410.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-411.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-415.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-416.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-417.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-418.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-419.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-42.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-420.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-421.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-422.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-423.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-424.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-425.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-426.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-427.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-428.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-429.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-43.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-430.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-431.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-432.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-433.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-434.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-435.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-436.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-437.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-438.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-439.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-44.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-440.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-441.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-442.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-443.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-444.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-445.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-446.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-447.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-448.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-449.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-45.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-450.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-451.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-452.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-453.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-454.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-455.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-456.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-457.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-458.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-459.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-46.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-460.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-461.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-462.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-463.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-464.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-465.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-466.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-467.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-468.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-469.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-47.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-470.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-471.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-472.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-473.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-474.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-475.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-476.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-477.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-478.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-479.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-48.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-480.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-481.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-482.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-483.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-484.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-485.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-486.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-487.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-488.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-489.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-49.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-490.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-491.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-492.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-493.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-494.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-495.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-496.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-497.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-498.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-499.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-50.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-500.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-501.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-502.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-503.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-504.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-505.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-506.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-507.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-508.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-509.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-51.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-510.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-511.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-512.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-513.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-514.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-515.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-516.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-517.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-518.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-519.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-52.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-520.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-521.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-522.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-523.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-524.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-525.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-526.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-527.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-528.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-529.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-53.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-530.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-531.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-532.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-533.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-534.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-535.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-536.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-537.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-538.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-539.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-54.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-540.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-541.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-542.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-543.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-544.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-545.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-546.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-547.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-548.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-549.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-55.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-550.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-551.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-552.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-553.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-554.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-555.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-556.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-557.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-558.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-559.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-56.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-560.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-561.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-562.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-563.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-564.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-565.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-566.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-567.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-568.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-569.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-57.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-570.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-571.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-572.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-573.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-574.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-575.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-576.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-577.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-578.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-579.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-58.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-580.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-581.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-582.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-583.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-584.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-585.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-586.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-587.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-588.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-589.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-59.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-590.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-591.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-592.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-593.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-594.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-595.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-596.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-597.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-598.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-599.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-60.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-600.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-601.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-602.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-603.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-604.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-605.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-606.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-607.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-608.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-609.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-61.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-610.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-611.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-612.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-613.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-614.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-615.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-616.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-617.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-618.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-619.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-62.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-620.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-621.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-622.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-623.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-624.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-625.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-626.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-627.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-628.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-629.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-63.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-630.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-631.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-632.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-633.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-634.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-635.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-636.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-637.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-638.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-639.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-64.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-640.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-641.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-642.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-643.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-644.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-645.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-646.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-647.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-648.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-649.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-65.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-650.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-651.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-652.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-653.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-654.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-655.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-656.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-657.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-658.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-659.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-66.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-660.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-661.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-662.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-663.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-664.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-665.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-666.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-667.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-668.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-669.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-67.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-670.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-671.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-672.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-673.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-674.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-675.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-676.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-677.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-678.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-679.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-68.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-680.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-681.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-682.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-683.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-684.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-685.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-686.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-687.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-688.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-689.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-69.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-690.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-691.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-692.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-693.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-694.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-695.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-696.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-697.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-698.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-699.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-70.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-700.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-701.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-702.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-703.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-704.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-705.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-706.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-707.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-708.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-709.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-71.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-710.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-711.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-712.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-713.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-714.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-715.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-716.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-717.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-718.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-719.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-72.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-720.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-721.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-722.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-723.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-724.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-725.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-726.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-727.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-728.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-729.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-73.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-730.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-731.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-732.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-733.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-734.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-735.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-736.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-737.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-738.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-739.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-74.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-740.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-741.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-742.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-743.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-744.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-745.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-746.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-747.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-748.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-749.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-75.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-750.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-751.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-752.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-753.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-754.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-755.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-756.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-757.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-758.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-759.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-76.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-760.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-761.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-762.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-763.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-764.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-765.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-766.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-767.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-768.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-769.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-77.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-770.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-771.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-772.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-773.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-774.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-775.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-776.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-777.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-778.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-779.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-78.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-780.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-781.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-782.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-783.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-784.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-785.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-786.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-787.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-788.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-789.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-79.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-790.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-791.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-792.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-793.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-794.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-795.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-796.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-797.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-798.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-799.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-80.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-800.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-801.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-802.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-803.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-804.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-805.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-806.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-807.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-808.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-809.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-81.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-810.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-811.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-812.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-813.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-814.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-815.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-816.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-817.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-818.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-819.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-82.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-820.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-821.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-822.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-823.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-824.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-825.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-826.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-827.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-828.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-829.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-83.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-830.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-831.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-832.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-833.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-834.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-835.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-836.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-837.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-838.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-839.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-84.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-840.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-841.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-842.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-843.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-844.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-845.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-846.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-847.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-848.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-849.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-85.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-850.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-851.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-852.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-853.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-854.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-855.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-856.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-857.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-858.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-859.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-86.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-860.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-861.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-862.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-863.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-864.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-865.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-866.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-867.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-868.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-869.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-87.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-870.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-871.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-872.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-873.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-874.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-875.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-876.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-877.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-878.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-879.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-88.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-880.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-881.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-882.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-883.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-884.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-885.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-886.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-887.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-888.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-889.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-89.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-890.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-891.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-892.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-893.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-894.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-895.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-896.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-897.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-898.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-899.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-90.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-900.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-901.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-902.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-903.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-904.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-905.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-906.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-907.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-908.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-909.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-91.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-910.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-911.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-912.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-913.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-914.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-915.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-916.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-917.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-918.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-919.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-92.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-920.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-921.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-922.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-923.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-924.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-925.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-926.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-927.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-928.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-929.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-93.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-930.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-931.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-932.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-933.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-934.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-935.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-936.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-937.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-938.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-939.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-94.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-940.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-941.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-942.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-943.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-944.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-945.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-946.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-947.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-948.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-949.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-95.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-950.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-951.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-952.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-953.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-954.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-955.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-956.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-957.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-958.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-959.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-96.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-960.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-961.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-962.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-963.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-964.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-965.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-966.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-967.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-968.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-969.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-97.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-970.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-971.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-972.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-973.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-974.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-975.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-976.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-977.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-978.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-979.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-98.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-980.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-981.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-982.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-983.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-984.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-985.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-986.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-987.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-988.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-989.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-99.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-990.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-991.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-992.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-993.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-994.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-995.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-996.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-997.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-998.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-999.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K2-SeqExprCast-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K2-SeqExprCast-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-30.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-31.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-32.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-33.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-34.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-35.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-36.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-37.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-38.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K2-SeqExprCastable-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K2-SeqExprCastable-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-30.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-31.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-32.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-33.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-34.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-35.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-36.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-37.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-38.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-39.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-40.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-41.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-42.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-43.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-44.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-45.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-46.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-47.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-48.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-49.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-50.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-51.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-52.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-53.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-54.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-55.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-56.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-57.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-58.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-59.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-60.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-61.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-62.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-63.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-64.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-65.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-66.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K2-SeqExprTreat-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-1.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-2.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-3.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-4.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-5.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-6.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-7.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-8.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-21.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/unabbreviatedSyntax-11.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-21.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/unabbreviatedSyntax-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-21.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/unabbreviatedSyntax-24.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-21.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-21.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/unabbreviatedSyntax-25.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-21.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-1.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-12.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-17.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-18.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-19.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-20.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-21.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-22.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-23.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-1.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-23.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-24.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-11.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-12.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-14.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-1.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-3.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-string-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-string-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-21.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-14.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-15.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-17.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-18.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-19.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-20.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-21.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-22.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-21.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-21.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-22.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-23.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-24.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-25.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-26.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-1.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-10.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-11.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-12.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-2.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-3.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-4.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-5.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-6.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-7.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-8.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-9.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-1.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-10.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-11.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-12.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-2.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-3.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-4.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-5.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-6.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-7.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-8.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-9.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-10.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-11.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-12.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-13.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-14.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-16.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-19.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-21.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-3.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-4.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-5.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-7.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-9.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space0args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-14.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-15.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-17.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-18.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-19.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-20.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-21.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-7.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-1.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-10.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-11.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-12.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-18.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-3.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-4.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-5.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-6.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-7.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-8.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-9.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-1.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-10.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-11.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-12.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-18.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-19.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-2.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-21.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-3.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-4.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-5.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-6.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-7.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-8.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-9.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-10.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-11.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-12.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-3.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-4.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-5.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-6.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-7.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-8.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-9.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-1.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-10.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-11.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-12.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-2.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-3.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-4.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-5.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-6.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-7.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-8.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-9.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch01.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch02.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch03.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch04.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch05.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch06.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch07.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch08.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch09.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch10.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch11.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch12.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch13.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch14.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch15.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-1.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-10.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-11.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-12.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-18.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-19.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-2.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-21.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-22.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-23.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-24.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-25.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-26.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-27.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-28.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-3.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-4.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-5.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-6.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-7.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-8.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-9.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matchesErr-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-18.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-19.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-21.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-22.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-23.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-24.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-25.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-26.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-27.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-28.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-29.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-30.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-31.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-32.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-33.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-7.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-1.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-10.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-11.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-12.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-18.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-19.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-21.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-22.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-23.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-24.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-25.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-26.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-27.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-28.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-29.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-3.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-30.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-4.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-5.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-6.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-7.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-8.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-9.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-14.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-15.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-14.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-15.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-14.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-15.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-14.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-15.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-17.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-18.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-19.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-20.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-21.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-14.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-15.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-17.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-18.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-19.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-20.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-21.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates01.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates02.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates03.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates04.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates05.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates06.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates07.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates08.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates09.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates10.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates11.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates12.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-10.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-11.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-12.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-13.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-14.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-15.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-16.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-18.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-19.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-21.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-3.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-4.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-5.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-6.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-7.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-8.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-9.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-10.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-11.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-12.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-13.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-14.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-15.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-16.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-18.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-19.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-21.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-3.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-4.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-5.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-6.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-7.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-8.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-9.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-10.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-11.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-12.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-13.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-14.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-15.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-16.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-18.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-19.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-21.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-3.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-4.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-5.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-6.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-7.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-8.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-9.xq3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-21.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-22.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-23.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-24.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-25.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-26.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-27.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-28.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-29.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-30.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/forg0008-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-2.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-3.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-4.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-5.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-2.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-22.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-23.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-24.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-3.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-4.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-5.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-datetime-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-2.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-3.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-4.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-5.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextDefaultCollationFunc/fn-default-collation-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextDefaultCollationFunc/fn-default-collation-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-13.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-23.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-19.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-2.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-7.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-19.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-2.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateFunc/fn-day-from-date1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTime1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DayFromDateTimeFunc/fn-day-from-dateTimeNew-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/DaysFromDurationFunc/fn-days-from-duration1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDateTimeFunc/fn-hours-from-dateTime1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromDurationFunc/fn-hours-from-duration1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/HoursFromTimeFunc/fn-hours-from-time1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDateTimeFunc/fn-minutes-from-dateTime1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromDurationFunc/fn-minutes-from-duration1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MinutesFromTimeFunc/fn-minutes-from-time1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateFunc/fn-month-from-date1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTime1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthFromDateTimeFunc/fn-month-from-dateTimeNew-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/MonthsFromDurationFunc/fn-months-from-duration1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDateTimeFunc/fn-seconds-from-dateTime1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromDurationFunc/fn-seconds-from-duration1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/SecondsFromTimeFunc/fn-seconds-from-time1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-13.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-15.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-20.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateFunc/fn-timezone-from-date-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-15.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-20.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromDateTimeFunc/fn-timezone-from-dateTimealt-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-13.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-15.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-20.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFromTimeFunc/fn-timezone-from-time-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-18.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-21.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-23.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateTimeToTimezoneFunc/fn-adjust-dateTime-to-timezone1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-18.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-19.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjDateToTimezoneFunc/fn-adjust-date-to-timezone1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-11.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-12.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-13.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-14.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-15.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-16.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-17.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-18.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-19.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-20.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/TimezoneFunction/AdjTimeToTimezoneFunc/fn-adjust-time-to-timezone1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateFunc/fn-year-from-date1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTime1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTimeNew-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearFromDateTimeFunc/fn-year-from-dateTimeNew-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/DurationDateTimeFunc/YearsFromDurationFunc/fn-years-from-duration1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-10.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-11.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-12.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-18.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-19.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-22.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-23.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-25.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-26.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-27.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-28.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-29.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-3.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-30.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-31.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-32.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-33.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-34.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-35.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-36.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-37.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-38.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-39.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-4.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-40.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-41.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-42.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-43.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-44.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-45.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-46.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-47.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-48.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-49.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-5.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-50.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-51.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-52.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-6.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-7.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-8.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ErrorFunc/fn-error-9.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-8.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/InScopePrefixesFunc/fn-in-scope-prefixes-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-11.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-12.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-13.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-14.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-15.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-16.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-17.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-18.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-19.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-23.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-7.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-8.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NameFunc/fn-name-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-15.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-17.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-18.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-19.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-20.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-3.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-4.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NamespaceURIForPrefixFunc/fn-namespace-uri-for-prefix-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-1.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-11.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-12.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-13.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-14.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-16.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-17.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-7.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-8.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang1args-1.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang1args-2.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLangFunc/fn-lang1args-3.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-1.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-13.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-18.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-23.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeLocalNameFunc/fn-local-name-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-1.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-18.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-19.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-20.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-21.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-22.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-23.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-24.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-25.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-26.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNamespaceURIFunc/fn-namespace-uri-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-number-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-number-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-number-3.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-number-4.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbernint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbernint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbernint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbernni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbernni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbernni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbernpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbernpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbernpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbersht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbersht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numbersht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeNumberFunc/fn-numberusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-1.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-12.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-17.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-18.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-19.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-20.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-21.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-22.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-23.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-24.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-8.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeFunc/NodeRootFunc/fn-root-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-10d.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-4d.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-5d.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqCollectionFunc/fn-collection-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocAvailableFunc/fn-doc-available-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocAvailableFunc/fn-doc-available-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-14.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-2.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-3.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqDocFunc/fn-doc-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-2.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-22.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-21.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-23.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDFunc/fn-id-dtd-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-2.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-22.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-16.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-17.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-19.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-20.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-21.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-23.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NodeSeqFunc/SeqIDREFFunc/fn-idref-dtd-9.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-002.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-018.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-019.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-020.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-021.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-022.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-023.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-024.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-025.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-026.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-027.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-028.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-029.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-030.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-031.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-032.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-033.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-034.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-035.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-036.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-037.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-038.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-039.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-040.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-041.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-042.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-043.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-044.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-045.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-046.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-047.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-048.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-049.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-050.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-051.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-052.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-053.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-054.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-055.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-056.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-057.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-058.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-059.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-060.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-061.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-062.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-063.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-064.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-065.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-066.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-067.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-068.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-069.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-070.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-071.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-072.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-073.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-074.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-075.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-076.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-077.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-078.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-079.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-080.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-081.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-082.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-083.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-084.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-085.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abs-more-args-086.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abslng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abslng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abslng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abspint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abspint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abspint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abssht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abssht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-abssht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/ABSFunc/fn-absusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilinglng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilinglng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilinglng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/CeilingFunc/fn-ceilingusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floordbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floordbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floordbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floordec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floordec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floordec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floornint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floornint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floornint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floornni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floornni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floornni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floornpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floornpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floornpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/FloorFunc/fn-floorusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/K2-RoundEvenFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/K2-RoundEvenFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/K2-RoundEvenFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/K2-RoundEvenFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/K2-RoundEvenFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/K2-RoundEvenFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/K2-RoundEvenFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/K2-RoundEvenFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evendbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evendbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evendbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evendec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evendec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evendec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evennint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evennint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evennint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evennni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evennni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evennni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evennpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evennpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evennpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evensht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evensht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evensht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundEvenFunc/fn-round-half-to-evenusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-rounddbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-rounddbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-rounddbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-rounddec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-rounddec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-rounddec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/NumericFunc/RoundFunc/fn-roundusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc001.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc002.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc003.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc004.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc005.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc010.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc012.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc013.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc014.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc018.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc019.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc020.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/LocalNameFromQnameFunc/LocalNameFromQNameFunc021.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/K2-NamespaceURIFromQNameFunc-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc001.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc002.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc003.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc004.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc005.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc010.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc012.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc013.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc014.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc018.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc019.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc020.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/NamespaceURIFromQNameFunc/NamespaceURIFromQNameFunc021.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc018.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc019.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc020.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/ExpandedQNameConstructFunc021.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/QNameConstructFunc/ExpandedQNameConstructFunc/qName-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/QNameFunc/ResolveQNameConstructFunc/fn-resolve-qname-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-018.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-019.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-020.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-021.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-022.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-023.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-024.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-025.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-026.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-027.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-028.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-029.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-030.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-031.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-032.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-033.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-034.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-035.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-036.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-037.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-038.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-039.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-040.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-041.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-042.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-043.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-044.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-045.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-046.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-047.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-048.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-049.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-050.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-051.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-052.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-053.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-054.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-055.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-056.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-057.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-058.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-059.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-060.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-061.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-062.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-063.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-064.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-065.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avg-mix-args-066.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdbl2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdbl2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdbl2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdbl2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdbl2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdec2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdec2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdec2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdec2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgdec2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgflt2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgflt2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgflt2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgflt2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgflt2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgintg2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgintg2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgintg2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgintg2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgintg2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avglng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avglng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avglng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avglng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avglng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avglng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avglng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avglng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnni2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnni2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnni2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnni2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnni2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnpi2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnpi2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnpi2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnpi2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgnpi2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgpint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgpint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgpint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgpint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgpint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgsht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgsht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgsht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgsht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgsht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgulng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgulng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgulng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgulng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgulng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgusht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgusht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgusht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgusht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqAVGFunc/fn-avgusht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqCountFunc/fn-countusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/K2-SeqMAXFunc-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/K2-SeqMAXFunc-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/K2-SeqMAXFunc-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/K2-SeqMAXFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/K2-SeqMAXFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/K2-SeqMAXFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-max-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-max-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-max-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdbl2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdbl2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdbl2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdbl2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdbl2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdec2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdec2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdec2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdec2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxdec2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxflt2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxflt2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxflt2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxflt2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxflt2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxintg2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxintg2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxintg2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxintg2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxintg2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxlng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxlng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxlng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxlng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxlng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnni2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnni2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnni2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnni2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnni2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnpi2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnpi2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnpi2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnpi2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxnpi2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxpint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxpint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxpint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxpint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxpint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxsht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxsht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxsht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxsht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxsht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxulng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxulng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxulng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxulng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxulng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxusht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxusht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxusht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxusht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMAXFunc/fn-maxusht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/K2-SeqMINFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-min-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-min-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-min-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindbl2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindbl2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindbl2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindbl2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindbl2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindec2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindec2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindec2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindec2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-mindec2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minflt2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minflt2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minflt2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minflt2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minflt2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minintg2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minintg2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minintg2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minintg2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minintg2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minlng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minlng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minlng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minlng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minlng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnni2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnni2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnni2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnni2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnni2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnpi2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnpi2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnpi2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnpi2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minnpi2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minpint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minpint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minpint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minpint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minpint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minsht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minsht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minsht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minsht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minsht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minulng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minulng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minulng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minulng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minulng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minusht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minusht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minusht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minusht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqMINFunc/fn-minusht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl3args-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdbl3args-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumdec3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt3args-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumflt3args-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumint3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumintg3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng3args-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumlng3args-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnint3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnint3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni3args-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni3args-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnni3args-7.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi3args-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumnpi3args-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint3args-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint3args-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumpint3args-7.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumsht3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng3args-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng3args-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumulng3args-7.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht3args-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht3args-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht3args-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht3args-4.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht3args-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht3args-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/AggregateSeqFunc/SeqSUMFunc/fn-sumusht3args-7.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-one-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onedbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onedbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onedbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onedec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onedec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onedec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onelng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onelng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onelng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onenint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onenint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onenint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onenni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onenni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onenni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onenpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onenpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onenpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onepint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onepint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onepint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onesht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onesht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-onesht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqExactlyOneFunc/fn-exactly-oneusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-more-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moredbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moredbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moredbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moredec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moredec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moredec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morelng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morelng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morelng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morenint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morenint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morenint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morenni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morenni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morenni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morenpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morenpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morenpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morepint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morepint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-morepint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moresht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moresht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moresht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqOneOrMoreFunc/fn-one-or-moreusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-one-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onedbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onedbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onedbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onedec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onedec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onedec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onelng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onelng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onelng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onenint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onenint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onenint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onenni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onenni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onenni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onenpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onenpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onenpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onepint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onepint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onepint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onesht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onesht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-onesht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/CardinalitySeqFunc/SeqZeroOrOneFunc/fn-zero-or-oneusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/context-item-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-050.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-001.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-002.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-003.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-004.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-005.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-006.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-007.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-008.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-009.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-010.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-011.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-012.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-013.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-014.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-015.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-016.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-017.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-018.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-019.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-020.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-021.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-022.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-023.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-024.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-025.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-026.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-027.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-028.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-029.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-030.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-031.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-032.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-033.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-034.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-035.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-036.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-037.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-038.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-039.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-040.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-041.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-042.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-043.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-044.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-045.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-046.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-047.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-048.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-boolean-mixed-args-049.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleandbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleandbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleandbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleandec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleandec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleandec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanlng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanlng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanlng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleannint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleannint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleannint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleannni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleannni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleannni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleannpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleannpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleannpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanpint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanpint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanpint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleansht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleansht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleansht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqBooleanFunc/fn-booleanusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-018.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-019.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-020.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-021.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-022.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-023.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-024.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-025.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-026.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-027.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-028.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-029.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-030.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-031.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-values-mixed-args-032.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valueslng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valueslng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valueslng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuespint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuespint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuespint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuessht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuessht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuessht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqDistinctValuesFunc/fn-distinct-valuesusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptydbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptydbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptydbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptydec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptydec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptydec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptylng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptylng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptylng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptynint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptynint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptynint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptynni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptynni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptynni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptynpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptynpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptynpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptypint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptypint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptypint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptysht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptysht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptysht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqEmptyFunc/fn-emptyusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsdbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsdbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsdbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsdec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsdec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsdec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existslng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existslng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existslng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsnint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsnint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsnint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsnni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsnni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsnni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsnpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsnpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsnpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existspint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existspint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existspint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existssht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existssht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existssht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqExistsFunc/fn-existsusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-010.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-018.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-019.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-020.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-021.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqIndexOfFunc/fn-indexof-mix-args-022.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-018.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-019.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqInsertBeforeFunc/fn-insert-before-mix-args-020.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-018.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-019.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqRemoveFunc/fn-remove-mix-args-020.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversedbl1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversedbl1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversedbl1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversedec1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversedec1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversedec1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseflt1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseflt1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseflt1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseintg1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseintg1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseintg1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverselng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverselng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverselng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversenint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversenint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversenint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversenni1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversenni1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversenni1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversenpi1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversenpi1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversenpi1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversepint1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversepint1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversepint1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversesht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversesht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reversesht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseulng1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseulng1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseulng1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseusht1args-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseusht1args-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqReverseFunc/fn-reverseusht1args-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-018.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-019.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-020.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-021.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-022.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqSubsequenceFunc/fn-subsequence-mix-args-023.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-018.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-019.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-020.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-021.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-022.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/GeneralSeqFunc/SeqUnorderedFunc/fn-unordered-mix-args-023.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/NodeSeqFunc/SeqIDFunc/K2-SeqIDFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/NodeSeqFunc/SeqIDFunc/K2-SeqIDFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/NodeSeqFunc/SeqIDFunc/K2-SeqIDFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/NodeSeqFunc/SeqIDREFFunc/K2-SeqIDREFFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/NodeSeqFunc/SeqIDREFFunc/K2-SeqIDREFFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/NodeSeqFunc/SeqIDREFFunc/K2-SeqIDREFFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-009.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-016.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-017.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-018.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-019.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-020.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-021.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-022.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-023.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-024.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-025.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-026.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-027.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-028.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-029.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-030.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-mix-args-031.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-node-args-1.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-node-args-2.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-node-args-3.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-node-args-4.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equal-node-args-5.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldbl2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldbl2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldbl2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldbl2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldbl2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldec2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldec2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldec2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldec2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equaldec2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalflt2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalflt2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalflt2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalflt2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalflt2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalintg2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalintg2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalintg2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalintg2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalintg2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equallng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equallng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equallng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equallng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equallng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnni2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnni2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnni2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnni2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnni2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnpi2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnpi2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnpi2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnpi2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalnpi2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalpint2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalpint2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalpint2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalpint2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalpint2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalsht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalsht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalsht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalsht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalsht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalulng2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalulng2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalulng2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalulng2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalulng2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalusht2args-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalusht2args-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalusht2args-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalusht2args-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/SeqFunc/SeqDeepEqualFunc/fn-deep-equalusht2args-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-1.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-10.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-11.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-13.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-14.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-15.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-16.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-17.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-18.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-19.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-2.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-20.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-21.xq4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-3.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-4.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-5.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-6.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-7.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-8.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/TraceFunc/fn-trace-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-23.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/URIFunc/ResolveURIFunc/fn-resolve-uri-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDateTimeFunc/K-HoursFromDateTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDateTimeFunc/K-HoursFromDateTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDateTimeFunc/K-HoursFromDateTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDateTimeFunc/K-HoursFromDateTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDateTimeFunc/K-HoursFromDateTimeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDurationFunc/K-HoursFromDurationFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDurationFunc/K-HoursFromDurationFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDurationFunc/K-HoursFromDurationFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDurationFunc/K-HoursFromDurationFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDurationFunc/K-HoursFromDurationFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDurationFunc/K-HoursFromDurationFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromDurationFunc/K-HoursFromDurationFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromTimeFunc/K-HoursFromTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromTimeFunc/K-HoursFromTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromTimeFunc/K-HoursFromTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromTimeFunc/K-HoursFromTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/HoursFromTimeFunc/K-HoursFromTimeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/IRIToURIfunc/K-IRIToURIfunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/IRIToURIfunc/K-IRIToURIfunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/IRIToURIfunc/K-IRIToURIfunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/IRIToURIfunc/K-IRIToURIfunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/InScopePrefixesFunc/K-InScopePrefixesFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/InScopePrefixesFunc/K-InScopePrefixesFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/LocalNameFromQNameFunc/K-LocalNameFromQNameFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/LocalNameFromQNameFunc/K-LocalNameFromQNameFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/LocalNameFromQNameFunc/K-LocalNameFromQNameFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/LocalNameFromQNameFunc/K-LocalNameFromQNameFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/LowerCaseFunc/K-LowerCaseFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/LowerCaseFunc/K-LowerCaseFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/LowerCaseFunc/K-LowerCaseFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/LowerCaseFunc/K-LowerCaseFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MatchesFunc/K-MatchesFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MatchesFunc/K-MatchesFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MatchesFunc/K-MatchesFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MatchesFunc/K-MatchesFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MatchesFunc/K-MatchesFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MatchesFunc/K-MatchesFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDateTimeFunc/K-MinutesFromDateTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDateTimeFunc/K-MinutesFromDateTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDateTimeFunc/K-MinutesFromDateTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDateTimeFunc/K-MinutesFromDateTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDateTimeFunc/K-MinutesFromDateTimeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDurationFunc/K-MinutesFromDurationFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDurationFunc/K-MinutesFromDurationFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDurationFunc/K-MinutesFromDurationFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDurationFunc/K-MinutesFromDurationFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDurationFunc/K-MinutesFromDurationFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDurationFunc/K-MinutesFromDurationFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromDurationFunc/K-MinutesFromDurationFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromTimeFunc/K-MinutesFromTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromTimeFunc/K-MinutesFromTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromTimeFunc/K-MinutesFromTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromTimeFunc/K-MinutesFromTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MinutesFromTimeFunc/K-MinutesFromTimeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-10.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-11.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-12.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-13.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-14.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-15.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-17.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-18.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-3.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-4.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-5.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-6.xq17
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-7.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-8.xq20
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-9.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-bad-ns.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-circular.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-collide-fn-001.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-collide-fn-002.xq18
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-collide-var-001.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-collide-var-002.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-emptyns.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-none.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-simple.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-two-import-ok.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modules-two-import.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Modules/ModuleImport/modulewrongprefix-lib.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateFunc/K-MonthFromDateFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateFunc/K-MonthFromDateFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateFunc/K-MonthFromDateFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateFunc/K-MonthFromDateFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateFunc/K-MonthFromDateFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateTimeFunc/K-MonthFromDateTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateTimeFunc/K-MonthFromDateTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateTimeFunc/K-MonthFromDateTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateTimeFunc/K-MonthFromDateTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthFromDateTimeFunc/K-MonthFromDateTimeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthsFromDurationFunc/K-MonthsFromDurationFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthsFromDurationFunc/K-MonthsFromDurationFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthsFromDurationFunc/K-MonthsFromDurationFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthsFromDurationFunc/K-MonthsFromDurationFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthsFromDurationFunc/K-MonthsFromDurationFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthsFromDurationFunc/K-MonthsFromDurationFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/MonthsFromDurationFunc/K-MonthsFromDurationFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NameFunc/K-NameFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NameFunc/K-NameFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NameFunc/K-NameFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NamespaceURIForPrefixFunc/K-NamespaceURIForPrefixFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NamespaceURIForPrefixFunc/K-NamespaceURIForPrefixFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NamespaceURIFromQNameFunc/K-NamespaceURIFromQNameFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NamespaceURIFromQNameFunc/K-NamespaceURIFromQNameFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NamespaceURIFromQNameFunc/K-NamespaceURIFromQNameFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NamespaceURIFromQNameFunc/K-NamespaceURIFromQNameFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NamespaceURIFromQNameFunc/K-NamespaceURIFromQNameFunc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NilledFunc/K-NilledFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NilledFunc/K-NilledFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NilledFunc/K-NilledFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NilledFunc/K-NilledFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeLangFunc/K-NodeLangFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeLangFunc/K-NodeLangFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeLangFunc/K-NodeLangFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeLangFunc/K-NodeLangFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeLocalNameFunc/K-NodeLocalNameFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeLocalNameFunc/K-NodeLocalNameFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeLocalNameFunc/K-NodeLocalNameFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNameFunc/K-NodeNameFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNameFunc/K-NodeNameFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNameFunc/K-NodeNameFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNamespaceURIFunc/K-NodeNamespaceURIFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNamespaceURIFunc/K-NodeNamespaceURIFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNamespaceURIFunc/K-NodeNamespaceURIFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeNumberFunc/K-NodeNumberFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeRootFunc/K-NodeRootFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeRootFunc/K-NodeRootFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeRootFunc/K-NodeRootFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NodeRootFunc/K-NodeRootFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeSpaceFunc/K-NormalizeSpaceFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeSpaceFunc/K-NormalizeSpaceFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeSpaceFunc/K-NormalizeSpaceFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeSpaceFunc/K-NormalizeSpaceFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeSpaceFunc/K-NormalizeSpaceFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeSpaceFunc/K-NormalizeSpaceFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeSpaceFunc/K-NormalizeSpaceFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeSpaceFunc/K-NormalizeSpaceFunc-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeSpaceFunc/K-NormalizeSpaceFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-11.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NormalizeUnicodeFunc/K-NormalizeUnicodeFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/NotFunc/K-NotFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Optional/Modules/ModuleImport/K-ModuleImport-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Optional/Modules/ModuleImport/K-ModuleImport-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Optional/Modules/ModuleImport/K-ModuleImport-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/K-CombinedErrorCodes-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/combined-errors-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/combined-errors-2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/combined-errors-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/OptionalFeatureErrors/CombinedErrorCodes/combined-errors-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/PrefixFromQName/K-PrefixFromQName-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/PrefixFromQName/K-PrefixFromQName-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/PrefixFromQName/K-PrefixFromQName-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/PrefixFromQName/K-PrefixFromQName-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ReplaceFunc/K-ReplaceFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ReplaceFunc/K-ReplaceFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ReplaceFunc/K-ReplaceFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ReplaceFunc/K-ReplaceFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ReplaceFunc/K-ReplaceFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ReplaceFunc/K-ReplaceFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ReplaceFunc/K-ReplaceFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ReplaceFunc/K-ReplaceFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ReplaceFunc/K-ReplaceFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveQNameConstructFunc/K-ResolveQNameConstructFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveQNameConstructFunc/K-ResolveQNameConstructFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveQNameConstructFunc/K-ResolveQNameConstructFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveQNameConstructFunc/K-ResolveQNameConstructFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveURIFunc/K-ResolveURIFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveURIFunc/K-ResolveURIFunc-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveURIFunc/K-ResolveURIFunc-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveURIFunc/K-ResolveURIFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveURIFunc/K-ResolveURIFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/ResolveURIFunc/K-ResolveURIFunc-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundEvenFunc/K-RoundEvenFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundEvenFunc/K-RoundEvenFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundEvenFunc/K-RoundEvenFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundEvenFunc/K-RoundEvenFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundEvenFunc/K-RoundEvenFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundFunc/K-RoundFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundFunc/K-RoundFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundFunc/K-RoundFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundFunc/K-RoundFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundFunc/K-RoundFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundFunc/K-RoundFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundFunc/K-RoundFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundFunc/K-RoundFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/RoundFunc/K-RoundFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/ConstructSI/Constr-compelem-constrmod-1.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/ConstructSI/Constr-compelem-constrmod-2.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/ConstructSI/Constr-compelem-constrmod-5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/ConstructSI/Constr-compelem-constrmod-6.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType025.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType026.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType027.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType037.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType038.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType039.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType040.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType041.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType042.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType043.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType044.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType048.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType049.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType050.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType051.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType052.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/FLWORExprSI/ForExprType053.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-data-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-11.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-14.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-23.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-id-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-11.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-13.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-14.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-23.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/MiscFunctions/fn-idref-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NotationEQSI/Comp-notation-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NumericEqualSI/value-comparison-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/NumericEqualSI/value-comparison-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/modules-schema-context.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-10.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-23.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-24.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-25.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-26.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-27.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-28.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-29.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-30.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-31.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SchemaImportProlog/schema-import-9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds12.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds13.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds14.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds15.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds16.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds17.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds18.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds19.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds20.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds21.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds22.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds23.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds24.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds25.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds26.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds27.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds28.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds29.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds30.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds31.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds32.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds33.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds34.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds35.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds36.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds37.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds38.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds39.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds40.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds41.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds42.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds7.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/casthcds9.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/notation-cast-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/notation-cast-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/qname-cast-1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/qname-cast-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/qname-cast-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/SeqExprCastSI/qname-cast-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-2.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-3.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/UserDefinedSI/user-defined-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/versionPrologSI/prolog-version-8.xq28
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaImport/versionPrologSI/version_declaration-005.xq30
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-10.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-11.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-12.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-13.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-14.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-15.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-16.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-17.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-18.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-19.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-2.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-20.xq17
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-21.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-23.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-24.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-25.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-26.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-3.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-5.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-8.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SchemaValidation/ValidateExpression/validateexpr-9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDateTimeFunc/K-SecondsFromDateTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDateTimeFunc/K-SecondsFromDateTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDateTimeFunc/K-SecondsFromDateTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDateTimeFunc/K-SecondsFromDateTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDateTimeFunc/K-SecondsFromDateTimeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDurationFunc/K-SecondsFromDurationFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDurationFunc/K-SecondsFromDurationFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDurationFunc/K-SecondsFromDurationFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDurationFunc/K-SecondsFromDurationFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDurationFunc/K-SecondsFromDurationFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDurationFunc/K-SecondsFromDurationFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromDurationFunc/K-SecondsFromDurationFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromTimeFunc/K-SecondsFromTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromTimeFunc/K-SecondsFromTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromTimeFunc/K-SecondsFromTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromTimeFunc/K-SecondsFromTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SecondsFromTimeFunc/K-SecondsFromTimeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-30.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-31.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-32.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-33.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-34.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-35.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-36.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-37.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-38.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-39.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-40.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-41.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-42.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-43.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqAVGFunc/K-SeqAVGFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-30.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-31.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-32.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqBooleanFunc/K-SeqBooleanFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqCountFunc/K-SeqCountFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-30.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-31.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-32.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-33.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-34.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-35.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-36.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-37.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-38.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-39.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-40.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-41.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-42.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-43.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-44.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-45.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-46.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-47.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-48.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-49.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-50.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-51.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-52.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-53.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-54.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-55.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDeepEqualFunc/K-SeqDeepEqualFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-6.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqDistinctValuesFunc/K-SeqDistinctValuesFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqEmptyFunc/K-SeqEmptyFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqEmptyFunc/K-SeqEmptyFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqEmptyFunc/K-SeqEmptyFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqEmptyFunc/K-SeqEmptyFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqEmptyFunc/K-SeqEmptyFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqEmptyFunc/K-SeqEmptyFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqEmptyFunc/K-SeqEmptyFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqEmptyFunc/K-SeqEmptyFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqEmptyFunc/K-SeqEmptyFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExactlyOneFunc/K-SeqExactlyOneFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqExistsFunc/K-SeqExistsFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqIndexOfFunc/K-SeqIndexOfFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqInsertBeforeFunc/K-SeqInsertBeforeFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-30.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-31.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-32.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-33.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-34.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-35.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-36.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-37.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-38.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-39.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-40.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-41.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-42.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-43.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-44.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-45.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-46.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-47.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-48.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-49.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-50.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-51.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-52.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-53.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-54.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-55.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-56.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-57.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-58.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-59.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMAXFunc/K-SeqMAXFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-18.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-30.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-31.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-32.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-33.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-34.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-35.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-36.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-37.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-38.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-39.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-40.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-41.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-42.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-43.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-44.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-45.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-46.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-47.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-48.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-49.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-50.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-51.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqMINFunc/K-SeqMINFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqOneOrMoreFunc/K-SeqOneOrMoreFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqOneOrMoreFunc/K-SeqOneOrMoreFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqOneOrMoreFunc/K-SeqOneOrMoreFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqOneOrMoreFunc/K-SeqOneOrMoreFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqOneOrMoreFunc/K-SeqOneOrMoreFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqOneOrMoreFunc/K-SeqOneOrMoreFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqOneOrMoreFunc/K-SeqOneOrMoreFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqOneOrMoreFunc/K-SeqOneOrMoreFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqRemoveFunc/K-SeqRemoveFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqReverseFunc/K-SeqReverseFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-30.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-31.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-32.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-33.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSUMFunc/K-SeqSUMFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-22.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-23.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-24.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-25.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-26.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-27.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-28.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-29.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-30.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-31.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-32.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-33.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-34.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-35.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-36.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-37.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-38.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-39.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-40.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-41.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-42.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-43.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-44.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqSubsequenceFunc/K-SeqSubsequenceFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqUnorderedFunc/K-SeqUnorderedFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqUnorderedFunc/K-SeqUnorderedFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqUnorderedFunc/K-SeqUnorderedFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqUnorderedFunc/K-SeqUnorderedFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqUnorderedFunc/K-SeqUnorderedFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqUnorderedFunc/K-SeqUnorderedFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqUnorderedFunc/K-SeqUnorderedFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqUnorderedFunc/K-SeqUnorderedFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqZeroOrOneFunc/K-SeqZeroOrOneFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqZeroOrOneFunc/K-SeqZeroOrOneFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqZeroOrOneFunc/K-SeqZeroOrOneFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqZeroOrOneFunc/K-SeqZeroOrOneFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqZeroOrOneFunc/K-SeqZeroOrOneFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqZeroOrOneFunc/K-SeqZeroOrOneFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqZeroOrOneFunc/K-SeqZeroOrOneFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SeqZeroOrOneFunc/K-SeqZeroOrOneFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StartsWithFunc/K-StartsWithFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticBaseURIFunc/K-StaticBaseURIFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticBaseURIFunc/K-StaticBaseURIFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticBaseURIFunc/K-StaticBaseURIFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst100.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst101.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst199.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst200.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst298.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst299.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst397.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst398.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst496.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STEmptyRule/STEmptyGeneralComp/generalexpressionst497.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/ST-WhereExpr001.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/ST-WhereExpr002.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-1.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-10.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-11.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-12.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-13.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-14.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-15.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-16.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-17.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-18.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-19.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-20.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-21.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-22.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-23.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-3.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-4.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-7.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-8.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STFLWORExpr/statictyping-9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes001.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes002.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes003.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes004.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes005.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes006.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes007.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes008.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes009.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes010.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes011.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes012.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes013.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes014.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/ST-Axes015.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/statictypingaxis-1.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/statictypingaxis-2.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/statictypingaxis-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/statictypingaxis-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/statictypingaxis-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StaticTyping/STPathExpr/STSteps/STAxes/statictypingaxis-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringFunc/K-StringFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringFunc/K-StringFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringFunc/K-StringFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringFunc/K-StringFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringFunc/K-StringFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringFunc/K-StringFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringJoinFunc/K-StringJoinFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringJoinFunc/K-StringJoinFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringJoinFunc/K-StringJoinFunc-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringJoinFunc/K-StringJoinFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringJoinFunc/K-StringJoinFunc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringJoinFunc/K-StringJoinFunc-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringJoinFunc/K-StringJoinFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringLengthFunc/K-StringLengthFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringLengthFunc/K-StringLengthFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringLengthFunc/K-StringLengthFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringLengthFunc/K-StringLengthFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringLengthFunc/K-StringLengthFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringLengthFunc/K-StringLengthFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringLengthFunc/K-StringLengthFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringLengthFunc/K-StringLengthFunc-8.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-11.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-12.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-16.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-17.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-18.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-19.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-20.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-21.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/StringToCodepointFunc/K-StringToCodepointFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringAfterFunc/K-SubstringAfterFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringBeforeFunc/K-SubstringBeforeFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-13.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-15.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/SubstringFunc/K-SubstringFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateFunc/K-TimezoneFromDateFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateFunc/K-TimezoneFromDateFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateFunc/K-TimezoneFromDateFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateFunc/K-TimezoneFromDateFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateFunc/K-TimezoneFromDateFunc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateFunc/K-TimezoneFromDateFunc-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateFunc/K-TimezoneFromDateFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateTimeFunc/K-TimezoneFromDateTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateTimeFunc/K-TimezoneFromDateTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateTimeFunc/K-TimezoneFromDateTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateTimeFunc/K-TimezoneFromDateTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateTimeFunc/K-TimezoneFromDateTimeFunc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateTimeFunc/K-TimezoneFromDateTimeFunc-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromDateTimeFunc/K-TimezoneFromDateTimeFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromTimeFunc/K-TimezoneFromTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromTimeFunc/K-TimezoneFromTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromTimeFunc/K-TimezoneFromTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromTimeFunc/K-TimezoneFromTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromTimeFunc/K-TimezoneFromTimeFunc-5.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromTimeFunc/K-TimezoneFromTimeFunc-6.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TimezoneFromTimeFunc/K-TimezoneFromTimeFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TokenizeFunc/K-TokenizeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TokenizeFunc/K-TokenizeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TokenizeFunc/K-TokenizeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TokenizeFunc/K-TokenizeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TokenizeFunc/K-TokenizeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TraceFunc/K-TraceFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TraceFunc/K-TraceFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TraceFunc/K-TraceFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TraceFunc/K-TraceFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TraceFunc/K-TraceFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TraceFunc/K-TraceFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-10.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-3.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TranslateFunc/K-TranslateFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TrivialEmbedding/trivial-1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TrivialEmbedding/trivial-3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TrueFunc/K-TrueFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TrueFunc/K-TrueFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/TrueFunc/K-TrueFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UpperCaseFunc/K-UpperCaseFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UpperCaseFunc/K-UpperCaseFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UpperCaseFunc/K-UpperCaseFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UpperCaseFunc/K-UpperCaseFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/auction.xml149
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q1.xml10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q1.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q1.xs10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q2.xml8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q2.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q2.xs8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q3.xml8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q3.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q4.xml9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q4.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q5.xml8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q5.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q6.xml9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q7.xml13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q7.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q8.xml12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseNS/ns-queries-results-q8.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCasePARTS/partlist.dtd7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCasePARTS/partlist.xml15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCasePARTS/parts-queries-results-q1.xq22
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCasePARTS/parts-queries-results-q1.xs19
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q1.xq18
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q10.xq20
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q11.xq20
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q12.xq33
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q13.xq20
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q14.xq18
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q15.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q16.xq21
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q17.xq17
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q18.xq24
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q2.xq19
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q3.xq20
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q4.xq16
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q5.xq31
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q6.xq20
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q7.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q8.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseR/rdb-queries-results-q9.xq20
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSEQ/seq-queries-results-q1.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSEQ/seq-queries-results-q2.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSEQ/seq-queries-results-q3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSEQ/seq-queries-results-q4.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSEQ/seq-queries-results-q5.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/report.dtd31
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q1.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q10.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q2.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q3.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q5.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q6.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q7.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q8a.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q8b.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml-queries-results-q9.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSGML/sgml.xml104
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRING/company-data.xml20
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRING/company.dtd10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRING/string-data.dtd26
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRING/string-queries-results-q1.xq5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRING/string-queries-results-q2.xq28
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRING/string-queries-results-q4.xq19
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRING/string-queries-results-q5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRING/string.dtd14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRING/string.xml82
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q10.xq16
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q11.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q12.xq45
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q2.xq16
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q3.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q4.xq25
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q5.xq16
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q6.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q7.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q8.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseSTRONG/strong-queries-results-q9.xq25
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/book.dtd15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/book.xml50
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q1.xml15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q1.xq18
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q1.xs15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q2.xml11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q2.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q2.xs11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q3.xml3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q3.xq6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q3.xs3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q4.xml6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q4.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q4.xs6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q5.xml9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q5.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q5.xs9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q6.xml22
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q6.xq25
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseTREE/tree-queries-results-q6.xs22
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/bib.dtd11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/bib.xml36
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/books.dtd3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/books.xml17
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/prices.dtd5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/prices.xml34
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/reviews.dtd5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/reviews.xml26
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q1.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q10.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q11.xq22
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q12.xq24
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q2.xq16
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q3.xq14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q4.xq25
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q5.xq18
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q6.xq23
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q7.xq16
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q8.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/UseCase/UseCaseXMP/xmp-queries-results-q9.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateFunc/K-YearFromDateFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateFunc/K-YearFromDateFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateFunc/K-YearFromDateFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateFunc/K-YearFromDateFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateFunc/K-YearFromDateFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateTimeFunc/K-YearFromDateTimeFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateTimeFunc/K-YearFromDateTimeFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateTimeFunc/K-YearFromDateTimeFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateTimeFunc/K-YearFromDateTimeFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearFromDateTimeFunc/K-YearFromDateTimeFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearsFromDurationFunc/K-YearsFromDurationFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearsFromDurationFunc/K-YearsFromDurationFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearsFromDurationFunc/K-YearsFromDurationFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearsFromDurationFunc/K-YearsFromDurationFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearsFromDurationFunc/K-YearsFromDurationFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearsFromDurationFunc/K-YearsFromDurationFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/YearsFromDurationFunc/K-YearsFromDurationFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-1.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-10.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-11.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-12.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-13.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-14.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-15.xq8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-2.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-3.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-4.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-5.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-6.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-7.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-8.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/compareFunc/K-compareFunc-9.xq7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/ReportingResults/Build.xml87
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/ReportingResults/Results.xml5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/ReportingResults/XQTSReport.html18
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/ReportingResults/XQTSReportSimple.html10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/ReportingResults/XQTSResult.xsd349
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/ReportingResults/XQTSResults.xsl1236
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/ReportingResults/XQTSSampleResult.xml87
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/DupNode.xml2
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/MixNS.xml27
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/QName-schema.xsd32
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/QName-source.xml10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/SpecialTypes.xml15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/SpecialTypes.xsd47
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/TopMany.xml36
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/Tree1Child.xml14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/Tree1Text.xml14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/TreeCompass.xml32
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/TreeEmpty.xml2
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/TreeRepeat.xml38
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/TreeStack.xml34
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/TreeTrunc.xml14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/acme_corp.xml27
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/atomic.xml41
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/atomic.xsd77
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/atomicns.xml36
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/auction.xml148
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/bib.dtd11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/bib.xml36
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/bib2.xml40
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/bids-dtd.dtd8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/bids.xml101
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/book.dtd15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/book.xml49
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/books.dtd3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/books.xml17
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/company-data.xml19
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/company.dtd10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/context-lib.xq26
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/emptydoc.xml2
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/emptyns-lib.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/examples.xml7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/examples.xsd22
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/fsx.xml5399
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/fsx_NS.xml2753
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/id.xml17
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/id.xsd29
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/iddtd.dtd27
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/iddtd.xml43
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/inscope.xml7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/ipo.xml32
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/items-dtd.dtd11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/items.xml64
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/lang.xml7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/listunion.xsd16
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/module1-lib.xq12
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/module2-lib.xq10
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/moduleDefs-lib.xq21
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/modulesdiffns-lib.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/notation.xml9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/notationschema.xsd52
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/nsmode.xml1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/nw_Customers.xml1193
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/orderData.xml114
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/orderData.xsd29
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/orders3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/partlist.dtd7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/partlist.xml14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/partsid.dtd7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/postals.xml11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/prices.dtd5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/prices.xml34
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/report.dtd31
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/report1.dtd15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/report1.xml41
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/reviews.dtd5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/reviews.xml26
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/sgml.xml101
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/simple.xsd49
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/staff.xml33
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/string-data.dtd26
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/string.dtd14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/string.xml82
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/strong-data.xml37
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/strong-queries-results-q12.xml33
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/strong-queries-results-q12.xsd81
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/strong-queries-results-q2.xsd26
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/strong-queries-results-q3.xsd24
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/strong-schema.xsd63
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/test1-lib.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/test1a-lib.xq13
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/test1c1-lib.xq17
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/test1collide1-lib.xq11
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/test1collide2-lib.xq15
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/test2-lib.xq9
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/test2c1-lib.xq17
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/textWithSpaces.xml7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/userdefined.xsd62
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/users-dtd.dtd7
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/users.xml33
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/works-mod.xml76
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/works.xml68
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/xq311A.xml5
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/xq311B.xml8
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSources/zips.xml18
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSuiteDocumentation/Guidelines for Running the XML Query Test Suite.html576
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSuiteDocumentation/Guidelines for Submitting XQTS Test Results.html164
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/TestSuiteDocumentation/Guidelines for Test Submission.html472
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/bugTestFiles/bug273719.xml1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/bugTestFiles/bug273795.xml1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/bugTestFiles/bug274471.xml1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/bugTestFiles/bug274792.xml1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/bugTestFiles/bug274805.xml1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/bugTestFiles/bug276134.xml4
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/bugTestFiles/bug276134.xsd14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/bugTestFiles/bug276134_2.xml6
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/bugTestFiles/bug276134_2.xsd14
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/100.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1000.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1001.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1002.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1003.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1004.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1005.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1006.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1007.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1008.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1009.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/100a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/100b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/100c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/100d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/100e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/100f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/101.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1010.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1011.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1012.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1013.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1014.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1015.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1016.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1017.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1018.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1019.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/101a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/101b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/101c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/101d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/101e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/101f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/102.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1020.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1021.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1022.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1023.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1024.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1025.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1026.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1027.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1028.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1029.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/102a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/102b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/102c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/102d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/102e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/102f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/103.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1030.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1031.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1032.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1033.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1034.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1035.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1036.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1037.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1038.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1039.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/103a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/103b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/103c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/103d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/103e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/103f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/104.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1040.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1041.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1042.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1043.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1044.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1045.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1046.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1047.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1048.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1049.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/104a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/104b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/104c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/104d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/104e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/104f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/105.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1050.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1051.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1052.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1053.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1054.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1055.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1056.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1057.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1058.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1059.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/105a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/105b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/105c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/105d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/105e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/105f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/106.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1060.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1061.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1062.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1063.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1064.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1065.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1066.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1067.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1068.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1069.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/106a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/106b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/106c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/106d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/106e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/106f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/107.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1070.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1071.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1072.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1073.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1074.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1075.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1076.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1077.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1078.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1079.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/107a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/107b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/107c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/107d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/107e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/107f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/108.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1080.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1081.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1082.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1083.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1084.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1085.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1086.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1087.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1088.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1089.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/108a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/108b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/108c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/108d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/108e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/108f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/109.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1090.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1091.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1092.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1093.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1094.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1095.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1096.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1097.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1098.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1099.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/109a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/109b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/109c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/109d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/109e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/109f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/10ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/110.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1100.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1101.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1102.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1103.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1104.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1105.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1106.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1107.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1108.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1109.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/110a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/110b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/110c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/110d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/110e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/110f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/111.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1110.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1111.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1112.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1113.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1114.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1115.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1116.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1117.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1118.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1119.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/111a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/111b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/111c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/111d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/111e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/111f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/112.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1120.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1121.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1122.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1123.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1124.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1125.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1126.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1127.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1128.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1129.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/112a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/112b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/112c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/112d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/112e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/112f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/113.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1130.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1131.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1132.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1133.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1134.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1135.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1136.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1137.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1138.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1139.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/113a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/113b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/113c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/113d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/113e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/113f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/114.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1140.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1141.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1142.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1143.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1144.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1145.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1146.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1147.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1148.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1149.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/114a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/114b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/114c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/114d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/114e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/114f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/115.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1150.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1151.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1152.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1153.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1154.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1155.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1156.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1157.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1158.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1159.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/115a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/115b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/115c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/115d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/115e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/115f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/116.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1160.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1161.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1162.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1163.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1164.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1165.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1166.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1167.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1168.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1169.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/116a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/116b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/116c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/116d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/116e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/116f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/117.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1170.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1171.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1172.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1173.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1174.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1175.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1176.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1177.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1178.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1179.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/117a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/117b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/117c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/117d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/117e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/117f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/118.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1180.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1181.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1182.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1183.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1184.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1185.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1186.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1187.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1188.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1189.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/118a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/118b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/118c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/118d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/118e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/118f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/119.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1190.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1191.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1192.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1193.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1194.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1195.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1196.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1197.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1198.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1199.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/119a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/119b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/119c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/119d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/119e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/119f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/11ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/120.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1200.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1201.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1202.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1203.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1204.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1205.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1206.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1207.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1208.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1209.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/120a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/120b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/120c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/120d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/120e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/120f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/121.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1210.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1211.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1212.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1213.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1214.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1215.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1216.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1217.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1218.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1219.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/121a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/121b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/121c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/121d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/121e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/121f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/122.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1220.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1221.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1222.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1223.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1224.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1225.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1226.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1227.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1228.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1229.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/122a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/122b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/122c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/122d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/122e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/122f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/123.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1230.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1231.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1232.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1233.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1234.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1235.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1236.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1237.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1238.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1239.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/123a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/123b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/123c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/123d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/123e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/123f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/124.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1240.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1241.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1242.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1243.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1244.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1245.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1246.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1247.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1248.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1249.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/124a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/124b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/124c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/124d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/124e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/124f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/125.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1250.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1251.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1252.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1253.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1254.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1255.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1256.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1257.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1258.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1259.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/125a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/125b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/125c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/125d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/125e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/125f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/126.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1260.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1261.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1262.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1263.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1264.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1265.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1266.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1267.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1268.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1269.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/126a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/126b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/126c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/126d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/126e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/126f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/127.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1270.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1271.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1272.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1273.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1274.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1275.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1276.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1277.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1278.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1279.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/127a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/127b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/127c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/127d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/127e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/127f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/128.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1280.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1281.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1282.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1283.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1284.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1285.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1286.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1287.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1288.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1289.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/128a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/128b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/128c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/128d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/128e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/128f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/129.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1290.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1291.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1292.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1293.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1294.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1295.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1296.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1297.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1298.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1299.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/129a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/129b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/129c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/129d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/129e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/129f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/12ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/130.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1300.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1301.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1302.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1303.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1304.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1305.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1306.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1307.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1308.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1309.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/130a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/130b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/130c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/130d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/130e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/130f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/131.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1310.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1311.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1312.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1313.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1314.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1315.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1316.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1317.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1318.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1319.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/131a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/131b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/131c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/131d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/131e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/131f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/132.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1320.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1321.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1322.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1323.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1324.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1325.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1326.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1327.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1328.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1329.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/132a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/132b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/132c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/132d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/132e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/132f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/133.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1330.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1331.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1332.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1333.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1334.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1335.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1336.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1337.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1338.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1339.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/133a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/133b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/133c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/133d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/133e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/133f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/134.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1340.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1341.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1342.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1343.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1344.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1345.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1346.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1347.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1348.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1349.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/134a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/134b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/134c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/134d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/134e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/134f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/135.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1350.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1351.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1352.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1353.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1354.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1355.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1356.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1357.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1358.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1359.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/135a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/135b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/135c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/135d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/135e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/135f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/136.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1360.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1361.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1362.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1363.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1364.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1365.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1366.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1367.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1368.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1369.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/136a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/136b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/136c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/136d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/136e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/136f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/137.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1370.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1371.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1372.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1373.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1374.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1375.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1376.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1377.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1378.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1379.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/137a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/137b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/137c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/137d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/137e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/137f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/138.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1380.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1381.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1382.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1383.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1384.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1385.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1386.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1387.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1388.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1389.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/138a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/138b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/138c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/138d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/138e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/138f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/139.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1390.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1391.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1392.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1393.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1394.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1395.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1396.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1397.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1398.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1399.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/139a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/139b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/139c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/139d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/139e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/139f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/13ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/140.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1400.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1401.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1402.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1403.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1404.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1405.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1406.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1407.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1408.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1409.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/140a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/140b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/140c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/140d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/140e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/140f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/141.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1410.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1411.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1412.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1413.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1414.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1415.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1416.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1417.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1418.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1419.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/141a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/141b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/141c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/141d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/141e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/141f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/142.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1420.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1421.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1422.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1423.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1424.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1425.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1426.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1427.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1428.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1429.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/142a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/142b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/142c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/142d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/142e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/142f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/143.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1430.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1431.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1432.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1433.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1434.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1435.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1436.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1437.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1438.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1439.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/143a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/143b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/143c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/143d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/143e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/143f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/144.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1440.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1441.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1442.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1443.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1444.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1445.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1446.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1447.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1448.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1449.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/144a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/144b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/144c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/144d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/144e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/144f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/145.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1450.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1451.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1452.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1453.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1454.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1455.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1456.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1457.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1458.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1459.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/145a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/145b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/145c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/145d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/145e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/145f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/146.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1460.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1461.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1462.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1463.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1464.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1465.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1466.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1467.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1468.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1469.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/146a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/146b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/146c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/146d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/146e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/146f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/147.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1470.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1471.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1472.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1473.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1474.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1475.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1476.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1477.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1478.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1479.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/147a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/147b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/147c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/147d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/147e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/147f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/148.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1480.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1481.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1482.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1483.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1484.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1485.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1486.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1487.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1488.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1489.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/148a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/148b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/148c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/148d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/148e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/148f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/149.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1490.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1491.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1492.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1493.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1494.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1495.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1496.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1497.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1498.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1499.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/149a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/149b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/149c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/149d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/149e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/149f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/14ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/150.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1500.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1501.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1502.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1503.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1504.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1505.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1506.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1507.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1508.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1509.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/150a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/150b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/150c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/150d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/150e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/150f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/151.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1510.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1511.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1512.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1513.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1514.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1515.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1516.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1517.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1518.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1519.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/151a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/151b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/151c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/151d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/151e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/151f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/152.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1520.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1521.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1522.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1523.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1524.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1525.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1526.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1527.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1528.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1529.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/152a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/152b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/152c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/152d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/152e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/152f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/153.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1530.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1531.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1532.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1533.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1534.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1535.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1536.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1537.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1538.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1539.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/153a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/153b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/153c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/153d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/153e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/153f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/154.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1540.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1541.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1542.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1543.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1544.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1545.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1546.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1547.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1548.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1549.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/154a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/154b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/154c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/154d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/154e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/154f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/155.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1550.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1551.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1552.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1553.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1554.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1555.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1556.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1557.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1558.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1559.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/155a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/155b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/155c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/155d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/155e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/155f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/156.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1560.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1561.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1562.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1563.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1564.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1565.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1566.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1567.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1568.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1569.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/156a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/156b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/156c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/156d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/156e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/156f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/157.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1570.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1571.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1572.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1573.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1574.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1575.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1576.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1577.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1578.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1579.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/157a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/157b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/157c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/157d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/157e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/157f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/158.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1580.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1581.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1582.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1583.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1584.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1585.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1586.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1587.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1588.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1589.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/158a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/158b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/158c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/158d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/158e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/158f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/159.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1590.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1591.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1592.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1593.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1594.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1595.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1596.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1597.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1598.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1599.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/159a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/159b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/159c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/159d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/159e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/159f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/15ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/160.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1600.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1601.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1602.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1603.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1604.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1605.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1606.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1607.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1608.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1609.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/160a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/160b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/160c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/160d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/160e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/160f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/161.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1610.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1611.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1612.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1613.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1614.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1615.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1616.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1617.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1618.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1619.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/161a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/161b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/161c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/161d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/161e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/161f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/162.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1620.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1621.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1622.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1623.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1624.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1625.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1626.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1627.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1628.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1629.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/162a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/162b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/162c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/162d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/162e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/162f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/163.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1630.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1631.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1632.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1633.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1634.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1635.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1636.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1637.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1638.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1639.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/163a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/163b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/163c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/163d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/163e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/163f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/164.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1640.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1641.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1642.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1643.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1644.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1645.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1646.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1647.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1648.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1649.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/164a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/164b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/164c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/164d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/164e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/164f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/165.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1650.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1651.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1652.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1653.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1654.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1655.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1656.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1657.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1658.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1659.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/165a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/165b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/165c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/165d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/165e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/165f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/166.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1660.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1661.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1662.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1663.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1664.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1665.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1666.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1667.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1668.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1669.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/166a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/166b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/166c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/166d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/166e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/166f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/167.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1670.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1671.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1672.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1673.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1674.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1675.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1676.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1677.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1678.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1679.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/167a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/167b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/167c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/167d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/167e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/167f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/168.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1680.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1681.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1682.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1683.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1684.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1685.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1686.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1687.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1688.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1689.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/168a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/168b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/168c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/168d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/168e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/168f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/169.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1690.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1691.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1692.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1693.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1694.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1695.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1696.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1697.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1698.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1699.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/169a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/169b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/169c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/169d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/169e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/169f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/16ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/170.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1700.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1701.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1702.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1703.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1704.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1705.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1706.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1707.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1708.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1709.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/170a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/170b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/170c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/170d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/170e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/170f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/171.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1710.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1711.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1712.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1713.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1714.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1715.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1716.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1717.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1718.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1719.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/171a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/171b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/171c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/171d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/171e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/171f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/172.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1720.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1721.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1722.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1723.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1724.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1725.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1726.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1727.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1728.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1729.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/172a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/172b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/172c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/172d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/172e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/172f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/173.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1730.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1731.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1732.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1733.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1734.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1735.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1736.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1737.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1738.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1739.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/173a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/173b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/173c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/173d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/173e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/173f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/174.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1740.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1741.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1742.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1743.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1744.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1745.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1746.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1747.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1748.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1749.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/174a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/174b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/174c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/174d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/174e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/174f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/175.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1750.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1751.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1752.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1753.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1754.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1755.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1756.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1757.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1758.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1759.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/175a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/175b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/175c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/175d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/175e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/175f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/176.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1760.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1761.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1762.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1763.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1764.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1765.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1766.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1767.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1768.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1769.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/176a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/176b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/176c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/176d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/176e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/176f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/177.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1770.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1771.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1772.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1773.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1774.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1775.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1776.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1777.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1778.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1779.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/177a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/177b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/177c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/177d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/177e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/177f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/178.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1780.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1781.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1782.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1783.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1784.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1785.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1786.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1787.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1788.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1789.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/178a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/178b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/178c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/178d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/178e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/178f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/179.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1790.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1791.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1792.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1793.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1794.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1795.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1796.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1797.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1798.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1799.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/179a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/179b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/179c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/179d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/179e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/179f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/17ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/180.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1800.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1801.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1802.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1803.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1804.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1805.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1806.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1807.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1808.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1809.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/180a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/180b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/180c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/180d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/180e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/180f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/181.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1810.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1811.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1812.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1813.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1814.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1815.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1816.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1817.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1818.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1819.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/181a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/181b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/181c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/181d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/181e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/181f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/182.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1820.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1821.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1822.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1823.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1824.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1825.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1826.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1827.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1828.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1829.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/182a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/182b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/182c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/182d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/182e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/182f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/183.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1830.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1831.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1832.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1833.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1834.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1835.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1836.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1837.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1838.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1839.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/183a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/183b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/183c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/183d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/183e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/183f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/184.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1840.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1841.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1842.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1843.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1844.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1845.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1846.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1847.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1848.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1849.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/184a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/184b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/184c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/184d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/184e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/184f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/185.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1850.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1851.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1852.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1853.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1854.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1855.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1856.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1857.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1858.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1859.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/185a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/185b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/185c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/185d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/185e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/185f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/186.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1860.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1861.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1862.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1863.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1864.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1865.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1866.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1867.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1868.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1869.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/186a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/186b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/186c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/186d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/186e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/186f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/187.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1870.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1871.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1872.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1873.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1874.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1875.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1876.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1877.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1878.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1879.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/187a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/187b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/187c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/187d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/187e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/187f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/188.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1880.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1881.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1882.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1883.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1884.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1885.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1886.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1887.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1888.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1889.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/188a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/188b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/188c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/188d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/188e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/188f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/189.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1890.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1891.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1892.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1893.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1894.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1895.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1896.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1897.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1898.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1899.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/189a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/189b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/189c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/189d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/189e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/189f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/18ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/190.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1900.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1901.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1902.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1903.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1904.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1905.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1906.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1907.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1908.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1909.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/190a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/190b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/190c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/190d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/190e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/190f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/191.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1910.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1911.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1912.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1913.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1914.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1915.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1916.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1917.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1918.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1919.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/191a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/191b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/191c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/191d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/191e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/191f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/192.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1920.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1921.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1922.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1923.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1924.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1925.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1926.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1927.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1928.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1929.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/192a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/192b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/192c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/192d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/192e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/192f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/193.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1930.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1931.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1932.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1933.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1934.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1935.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1936.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1937.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1938.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1939.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/193a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/193b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/193c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/193d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/193e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/193f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/194.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1940.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1941.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1942.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1943.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1944.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1945.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1946.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1947.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1948.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1949.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/194a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/194b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/194c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/194d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/194e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/194f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/195.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1950.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1951.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1952.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1953.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1954.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1955.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1956.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1957.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1958.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1959.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/195a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/195b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/195c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/195d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/195e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/195f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/196.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1960.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1961.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1962.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1963.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1964.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1965.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1966.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1967.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1968.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1969.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/196a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/196b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/196c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/196d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/196e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/196f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/197.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1970.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1971.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1972.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1973.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1974.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1975.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1976.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1977.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1978.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1979.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/197a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/197b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/197c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/197d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/197e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/197f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/198.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1980.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1981.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1982.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1983.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1984.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1985.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1986.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1987.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1988.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1989.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/198a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/198b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/198c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/198d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/198e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/198f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/199.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1990.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1991.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1992.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1993.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1994.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1995.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1996.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1997.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1998.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1999.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/199a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/199b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/199c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/199d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/199e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/199f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/19ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1a9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aa9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aaa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aaf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ab9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1abb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1abc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1abd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1abe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1abf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ac9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1acb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1acc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1acd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ace.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1acf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ad9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ada.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1adb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1adc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1add.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ade.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1adf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ae9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aeb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1af9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1afa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1afb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1afc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1afd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1afe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1aff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1b9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ba9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1baa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1baf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bb9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bbb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bbc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bbd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bbe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bbf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bc9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bcb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bcc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bcd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bcf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bd9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bda.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bdb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bdc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bdd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bde.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bdf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1be9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1beb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bf9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bfa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bfb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bfc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bfd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bfe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1bff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1c9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ca9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1caa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1caf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cb9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cbb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cbc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cbd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cbe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cbf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cc9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ccb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ccc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ccd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ccf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cd9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cda.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cdb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cdc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cdd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cde.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cdf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ce9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ceb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ced.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cf9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cfa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cfb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cfc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cfd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cfe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1cff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1d9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1da9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1daa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1daf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1db9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dbb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dbc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dbd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dbe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dbf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dc9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dcb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dcc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dcd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dcf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dd9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dda.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ddb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ddc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ddd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dde.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ddf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1de9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1deb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ded.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1def.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1df9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dfa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dfb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dfc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dfd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dfe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1dff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1e9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ea9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eaa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ead.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eaf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eb9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ebb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ebc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ebd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ebe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ebf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ec9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ecb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ecc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ecd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ece.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ecf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ed9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eda.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1edb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1edc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1edd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ede.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1edf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ee9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eeb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ef9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1efa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1efb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1efc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1efd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1efe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1eff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1f9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fa9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1faa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1faf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fb9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fbb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fbc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fbd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fbe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fbf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fc0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fc1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fc2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fc3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/1ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/200.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/201.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/202.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/203.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/204.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/205.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/206.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/207.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/208.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/209.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/20a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/20b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/20c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/20d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/20e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/20f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/210.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/211.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/212.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/213.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/214.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/215.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/216.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/217.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/218.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/219.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/21a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/21b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/21c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/21d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/21e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/21f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/220.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/221.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/222.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/223.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/224.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/225.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/226.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/227.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/228.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/229.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/22a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/22b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/22c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/22d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/22e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/22f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/230.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/231.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/232.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/233.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/234.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/235.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/236.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/237.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/238.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/239.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/23a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/23b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/23c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/23d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/23e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/23f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/240.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/241.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/242.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/243.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/244.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/245.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/246.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/247.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/248.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/249.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/24a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/24b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/24c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/24d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/24e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/24f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/250.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/251.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/252.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/253.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/254.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/255.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/256.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/257.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/258.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/259.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/25a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/25b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/25c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/25d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/25e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/25f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/260.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/261.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/262.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/263.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/264.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/265.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/266.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/267.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/268.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/269.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/26a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/26b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/26c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/26d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/26e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/26f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/270.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/271.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/272.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/273.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/274.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/275.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/276.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/277.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/278.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/279.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/27a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/27b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/27c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/27d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/27e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/27f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/280.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/281.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/282.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/283.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/284.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/285.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/286.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/287.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/288.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/289.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/28a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/28b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/28c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/28d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/28e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/28f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/290.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/291.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/292.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/293.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/294.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/295.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/296.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/297.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/298.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/299.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/29a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/29b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/29c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/29d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/29e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/29f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/2ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/300.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/301.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/302.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/303.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/304.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/305.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/306.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/307.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/308.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/309.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/30a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/30b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/30c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/30d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/30e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/30f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/310.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/311.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/312.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/313.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/314.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/315.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/316.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/317.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/318.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/319.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/31a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/31b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/31c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/31d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/31e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/31f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/320.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/321.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/322.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/323.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/324.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/325.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/326.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/327.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/328.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/329.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/32a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/32b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/32c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/32d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/32e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/32f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/330.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/331.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/332.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/333.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/334.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/335.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/336.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/337.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/338.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/339.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/33a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/33b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/33c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/33d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/33e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/33f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/340.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/341.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/342.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/343.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/344.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/345.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/346.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/347.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/348.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/349.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/34a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/34b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/34c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/34d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/34e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/34f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/350.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/351.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/352.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/353.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/354.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/355.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/356.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/357.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/358.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/359.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/35a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/35b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/35c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/35d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/35e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/35f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/360.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/361.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/362.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/363.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/364.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/365.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/366.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/367.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/368.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/369.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/36a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/36b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/36c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/36d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/36e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/36f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/370.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/371.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/372.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/373.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/374.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/375.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/376.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/377.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/378.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/379.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/37a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/37b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/37c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/37d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/37e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/37f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/380.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/381.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/382.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/383.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/384.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/385.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/386.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/387.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/388.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/389.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/38a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/38b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/38c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/38d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/38e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/38f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/390.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/391.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/392.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/393.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/394.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/395.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/396.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/397.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/398.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/399.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/39a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/39b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/39c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/39d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/39e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/39f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/3ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/400.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/401.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/402.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/403.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/404.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/405.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/406.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/407.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/408.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/409.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/40a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/40b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/40c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/40d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/40e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/40f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/410.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/411.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/412.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/413.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/414.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/415.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/416.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/417.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/418.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/419.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/41a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/41b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/41c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/41d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/41e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/41f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/420.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/421.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/422.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/423.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/424.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/425.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/426.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/427.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/428.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/429.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/42a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/42b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/42c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/42d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/42e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/42f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/430.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/431.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/432.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/433.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/434.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/435.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/436.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/437.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/438.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/439.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/43a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/43b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/43c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/43d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/43e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/43f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/440.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/441.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/442.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/443.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/444.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/445.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/446.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/447.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/448.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/449.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/44a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/44b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/44c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/44d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/44e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/44f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/450.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/451.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/452.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/453.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/454.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/455.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/456.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/457.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/458.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/459.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/45a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/45b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/45c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/45d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/45e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/45f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/460.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/461.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/462.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/463.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/464.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/465.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/466.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/467.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/468.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/469.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/46a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/46b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/46c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/46d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/46e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/46f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/470.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/471.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/472.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/473.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/474.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/475.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/476.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/477.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/478.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/479.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/47a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/47b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/47c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/47d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/47e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/47f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/480.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/481.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/482.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/483.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/484.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/485.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/486.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/487.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/488.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/489.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/48a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/48b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/48c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/48d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/48e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/48f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/490.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/491.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/492.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/493.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/494.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/495.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/496.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/497.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/498.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/499.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/49a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/49b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/49c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/49d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/49e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/49f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/4ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/500.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/501.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/502.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/503.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/504.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/505.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/506.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/507.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/508.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/509.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/50a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/50b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/50c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/50d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/50e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/50f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/510.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/511.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/512.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/513.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/514.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/515.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/516.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/517.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/518.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/519.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/51a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/51b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/51c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/51d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/51e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/51f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/520.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/521.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/522.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/523.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/524.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/525.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/526.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/527.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/528.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/529.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/52a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/52b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/52c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/52d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/52e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/52f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/530.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/531.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/532.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/533.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/534.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/535.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/536.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/537.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/538.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/539.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/53a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/53b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/53c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/53d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/53e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/53f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/540.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/541.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/542.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/543.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/544.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/545.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/546.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/547.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/548.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/549.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/54a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/54b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/54c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/54d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/54e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/54f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/550.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/551.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/552.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/553.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/554.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/555.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/556.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/557.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/558.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/559.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/55a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/55b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/55c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/55d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/55e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/55f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/560.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/561.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/562.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/563.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/564.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/565.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/566.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/567.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/568.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/569.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/56a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/56b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/56c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/56d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/56e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/56f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/570.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/571.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/572.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/573.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/574.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/575.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/576.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/577.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/578.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/579.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/57a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/57b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/57c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/57d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/57e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/57f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/580.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/581.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/582.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/583.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/584.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/585.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/586.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/587.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/588.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/589.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/58a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/58b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/58c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/58d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/58e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/58f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/590.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/591.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/592.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/593.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/594.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/595.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/596.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/597.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/598.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/599.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/59a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/59b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/59c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/59d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/59e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/59f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/5ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/600.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/601.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/602.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/603.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/604.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/605.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/606.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/607.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/608.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/609.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/60a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/60b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/60c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/60d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/60e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/60f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/610.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/611.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/612.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/613.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/614.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/615.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/616.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/617.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/618.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/619.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/61a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/61b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/61c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/61d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/61e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/61f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/620.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/621.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/622.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/623.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/624.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/625.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/626.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/627.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/628.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/629.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/62a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/62b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/62c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/62d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/62e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/62f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/630.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/631.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/632.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/633.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/634.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/635.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/636.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/637.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/638.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/639.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/63a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/63b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/63c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/63d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/63e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/63f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/640.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/641.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/642.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/643.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/644.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/645.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/646.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/647.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/648.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/649.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/64a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/64b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/64c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/64d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/64e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/64f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/650.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/651.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/652.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/653.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/654.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/655.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/656.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/657.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/658.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/659.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/65a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/65b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/65c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/65d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/65e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/65f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/660.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/661.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/662.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/663.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/664.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/665.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/666.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/667.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/668.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/669.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/66a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/66b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/66c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/66d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/66e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/66f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/670.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/671.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/672.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/673.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/674.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/675.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/676.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/677.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/678.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/679.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/67a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/67b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/67c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/67d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/67e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/67f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/680.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/681.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/682.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/683.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/684.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/685.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/686.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/687.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/688.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/689.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/68a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/68b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/68c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/68d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/68e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/68f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/690.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/691.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/692.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/693.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/694.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/695.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/696.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/697.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/698.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/699.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/69a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/69b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/69c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/69d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/69e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/69f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/6ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/700.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/701.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/702.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/703.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/704.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/705.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/706.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/707.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/708.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/709.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/70a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/70b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/70c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/70d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/70e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/70f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/710.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/711.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/712.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/713.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/714.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/715.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/716.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/717.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/718.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/719.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/71a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/71b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/71c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/71d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/71e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/71f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/720.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/721.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/722.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/723.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/724.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/725.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/726.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/727.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/728.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/729.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/72a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/72b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/72c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/72d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/72e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/72f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/730.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/731.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/732.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/733.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/734.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/735.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/736.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/737.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/738.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/739.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/73a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/73b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/73c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/73d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/73e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/73f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/740.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/741.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/742.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/743.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/744.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/745.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/746.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/747.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/748.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/749.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/74a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/74b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/74c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/74d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/74e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/74f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/750.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/751.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/752.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/753.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/754.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/755.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/756.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/757.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/758.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/759.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/75a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/75b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/75c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/75d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/75e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/75f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/760.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/761.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/762.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/763.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/764.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/765.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/766.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/767.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/768.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/769.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/76a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/76b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/76c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/76d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/76e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/76f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/770.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/771.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/772.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/773.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/774.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/775.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/776.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/777.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/778.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/779.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/77a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/77b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/77c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/77d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/77e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/77f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/780.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/781.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/782.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/783.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/784.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/785.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/786.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/787.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/788.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/789.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/78a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/78b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/78c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/78d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/78e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/78f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/790.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/791.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/792.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/793.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/794.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/795.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/796.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/797.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/798.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/799.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/79a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/79b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/79c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/79d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/79e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/79f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/7ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/800.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/801.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/802.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/803.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/804.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/805.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/806.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/807.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/808.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/809.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/80a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/80b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/80c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/80d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/80e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/80f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/810.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/811.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/812.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/813.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/814.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/815.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/816.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/817.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/818.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/819.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/81a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/81b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/81c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/81d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/81e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/81f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/820.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/821.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/822.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/823.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/824.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/825.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/826.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/827.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/828.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/829.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/82a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/82b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/82c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/82d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/82e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/82f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/830.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/831.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/832.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/833.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/834.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/835.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/836.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/837.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/838.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/839.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/83a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/83b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/83c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/83d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/83e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/83f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/840.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/841.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/842.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/843.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/844.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/845.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/846.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/847.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/848.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/849.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/84a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/84b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/84c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/84d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/84e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/84f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/850.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/851.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/852.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/853.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/854.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/855.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/856.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/857.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/858.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/859.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/85a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/85b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/85c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/85d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/85e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/85f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/860.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/861.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/862.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/863.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/864.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/865.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/866.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/867.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/868.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/869.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/86a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/86b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/86c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/86d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/86e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/86f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/870.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/871.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/872.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/873.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/874.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/875.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/876.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/877.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/878.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/879.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/87a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/87b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/87c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/87d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/87e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/87f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/880.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/881.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/882.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/883.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/884.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/885.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/886.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/887.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/888.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/889.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/88a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/88b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/88c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/88d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/88e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/88f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/890.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/891.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/892.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/893.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/894.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/895.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/896.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/897.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/898.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/899.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/89a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/89b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/89c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/89d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/89e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/89f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/8ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/900.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/901.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/902.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/903.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/904.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/905.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/906.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/907.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/908.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/909.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/90a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/90b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/90c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/90d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/90e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/90f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/910.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/911.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/912.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/913.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/914.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/915.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/916.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/917.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/918.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/919.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/91a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/91b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/91c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/91d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/91e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/91f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/920.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/921.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/922.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/923.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/924.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/925.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/926.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/927.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/928.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/929.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/92a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/92b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/92c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/92d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/92e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/92f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/930.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/931.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/932.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/933.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/934.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/935.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/936.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/937.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/938.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/939.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/93a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/93b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/93c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/93d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/93e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/93f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/940.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/941.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/942.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/943.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/944.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/945.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/946.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/947.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/948.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/949.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/94a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/94b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/94c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/94d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/94e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/94f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/950.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/951.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/952.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/953.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/954.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/955.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/956.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/957.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/958.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/959.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/95a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/95b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/95c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/95d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/95e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/95f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/960.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/961.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/962.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/963.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/964.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/965.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/966.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/967.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/968.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/969.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/96a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/96b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/96c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/96d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/96e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/96f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/970.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/971.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/972.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/973.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/974.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/975.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/976.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/977.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/978.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/979.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/97a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/97b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/97c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/97d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/97e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/97f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/980.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/981.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/982.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/983.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/984.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/985.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/986.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/987.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/988.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/989.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/98a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/98b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/98c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/98d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/98e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/98f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/990.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/991.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/992.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/993.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/994.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/995.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/996.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/997.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/998.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/999.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/99a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/99b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/99c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/99d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/99e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/99f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/9ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/a9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aa9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aaa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aaf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ab9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/abb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/abc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/abd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/abe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/abf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ac9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/acb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/acc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/acd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ace.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/acf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ad9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ada.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/adb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/adc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/add.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ade.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/adf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ae9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aeb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/af9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/afa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/afb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/afc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/afd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/afe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/aff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/b9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ba9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/baa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/baf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bb9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bbb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bbc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bbd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bbe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bbf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bc9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bcb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bcc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bcd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bcf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bd9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bda.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bdb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bdc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bdd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bde.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bdf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/be9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/beb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bf9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bfa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bfb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bfc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bfd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bfe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/bff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/c9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ca9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/caa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/caf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cb9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cbb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cbc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cbd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cbe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cbf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cc9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ccb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ccc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ccd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ccf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cd9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cda.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cdb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cdc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cdd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cde.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cdf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ce9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ceb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ced.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cf9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cfa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cfb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cfc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cfd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cfe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/cff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/d9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/da9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/daa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/daf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/db9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dbb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dbc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dbd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dbe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dbf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dc9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dcb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dcc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dcd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dcf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dd9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dda.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ddb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ddc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ddd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dde.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ddf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/de9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/deb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ded.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/def.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/df9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dfa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dfb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dfc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dfd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dfe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/dff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/e9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ea9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eaa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ead.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eaf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eb9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ebb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ebc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ebd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ebe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ebf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ec9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ecb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ecc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ecd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ece.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ecf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ed9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eda.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/edb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/edc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/edd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ede.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/edf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ee9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eeb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ef9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/efa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/efb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/efc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/efd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/efe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/eff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f00.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f01.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f02.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f03.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f04.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f05.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f06.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f07.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f08.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f09.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f0a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f0b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f0c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f0d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f0e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f0f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f10.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f11.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f12.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f13.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f14.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f15.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f16.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f17.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f18.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f19.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f1a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f1b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f1c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f1d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f1e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f1f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f20.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f21.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f22.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f23.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f24.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f25.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f26.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f27.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f28.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f29.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f2a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f2b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f2c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f2d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f2e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f2f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f30.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f31.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f32.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f33.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f34.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f35.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f36.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f37.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f38.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f39.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f3a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f3b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f3c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f3d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f3e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f3f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f40.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f41.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f42.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f43.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f44.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f45.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f46.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f47.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f48.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f49.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f4a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f4b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f4c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f4d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f4e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f4f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f50.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f51.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f52.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f53.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f54.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f55.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f56.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f57.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f58.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f59.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f5a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f5b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f5c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f5d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f5e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f5f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f60.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f61.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f62.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f63.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f64.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f65.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f66.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f67.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f68.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f69.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f6a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f6b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f6c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f6d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f6e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f6f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f70.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f71.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f72.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f73.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f74.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f75.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f76.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f77.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f78.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f79.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f7a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f7b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f7c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f7d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f7e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f7f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f80.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f81.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f82.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f83.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f84.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f85.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f86.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f87.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f88.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f89.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f8a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f8b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f8c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f8d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f8e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f8f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f90.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f91.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f92.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f93.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f94.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f95.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f96.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f97.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f98.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f99.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f9a.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f9b.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f9c.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f9d.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f9e.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/f9f.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fa9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/faa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fab.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fac.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fad.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fae.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/faf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fb9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fba.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fbb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fbc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fbd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fbe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fbf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fc9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fca.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fcb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fcc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fcd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fce.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fcf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fd9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fda.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fdb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fdc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fdd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fde.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fdf.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fe9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fea.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/feb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fec.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fed.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fee.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fef.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff0.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff1.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff2.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff3.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff4.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff5.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff6.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff7.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff8.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ff9.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ffa.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ffb.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ffc.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ffd.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/ffe.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/_files/fff.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/coverageReport/xslUnitTestCoverage.html1
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/lib/xmlunit-1.2.jarbin96507 -> 0 bytes
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/test/AbstractPsychoPathTest.java313
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/test/AllPsychoPathTests.java32
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/test/AllW3CXPath20Tests.java63
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/test/Bug269833.java64
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/test/TestBugs.java908
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/test/TestXPath20.java123
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/test/XPath20TestPlugin.java48
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/test/XPathDecimalFormatTest.java51
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/AllW3CXPath20Tests.java27
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/AbbrAxesTest.java803
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/AllW3CCoreTests.java62
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/AxesTest.java6908
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/Base64BinaryEQTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/BooleanEqualTest.java1542
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/BooleanGTTest.java1357
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/BooleanLTTest.java1357
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/CombNodeSeqTest.java62
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/CondExprTest.java506
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/DurationEQTest.java2578
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/ExternalContextExprTest.java938
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/FilterExprTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/ForExprWithTest.java173
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/ForExprWithoutTest.java654
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/GenCompEqTest.java1801
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/GenCompGTEQTest.java1838
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/GenCompGTTest.java1801
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/GenCompLTEQTest.java1838
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/GenCompLTTest.java1838
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/GenCompNETest.java1801
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/HexBinaryEQTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/InternalContextExprTest.java807
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/LastTest.txt3
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/LiteralsTest.java2372
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/LogicExprTest.java11791
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/NameTestTest.java212
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/NodeAfterTest.java580
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/NodeBeforeTest.java580
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/NodeNameFuncTest.java136
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/NodeSameTest.java580
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/NodeTestTest.java914
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/ParenExprTest.java488
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/PredicatesTest.java1617
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/PrefixFromQNameTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/QNameEQTest.java987
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/QuantExprTest.java2430
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/QuantExprWithTest.java247
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/RangeExprTest.java1024
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/ReturnExprTest.java580
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/SeqExceptTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/SeqExprCastTest.java26554
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/SeqExprCastableTest.java24001
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/SeqExprInstanceOfTest.java4095
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/SeqIntersectTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/SeqUnionTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/SequenceTypeSyntaxTest.java787
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/UnabbrAxesTest.java985
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/XQueryCommentTest.java432
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/core/commaOpTest.java1912
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/AllW3CDateTests.java57
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateAddDTDTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateAddYMDTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateEQTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateGTTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateLTTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateSubtractDTDTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateSubtractYMDTest.java829
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateTimeAddDTDTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateTimeEQTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateTimeGTTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateTimeLTTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateTimeSubtractDTDTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DateTimeSubtractYMDTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DatesSubtractTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DayTimeDurationAddTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DayTimeDurationDivideDTDTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DayTimeDurationDivideTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DayTimeDurationGTTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DayTimeDurationLTTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DayTimeDurationMultiplyTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/DayTimeDurationSubtractTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/TimeAddDTDTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/TimeEQTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/TimeGTTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/TimeLTTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/TimeSubtractDTDTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/TimeSubtractTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/YearMonthDurationAddDTTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/YearMonthDurationAddTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/YearMonthDurationDivideTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/YearMonthDurationDivideYMDTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/YearMonthDurationGTTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/YearMonthDurationLTTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/YearMonthDurationMultiplyTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/YearMonthDurationSubtractTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/dateTimesSubtractTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/gDayEQTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/gMonthDayEQTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/gMonthEQTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/gYearEQTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/dates/gYearMonthEQTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ABSFuncTest.java4651
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/AdjDateTimeToTimezoneFuncTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/AdjDateToTimezoneFuncTest.java691
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/AdjTimeToTimezoneFuncTest.java728
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/AllW3CFunctionTests.java121
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/BaseURIFuncTest.java139
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/CeilingFuncTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/CodepointEqualTest.java792
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/CodepointToStringFuncTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ConcatFuncTest.java3049
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ContainsFuncTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ContextCurrentDateFuncTest.java818
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ContextCurrentDatetimeFuncTest.java985
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ContextCurrentTimeFuncTest.java830
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ContextDefaultCollationFuncTest.java99
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ContextImplicitTimezoneFuncTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ContextLastFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ContextPositionFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/DataFuncTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/DateTimeFuncTest.java1172
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/DayFromDateFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/DayFromDateTimeFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/DaysFromDurationFuncTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/DocumentURIFuncTest.java432
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/EncodeURIfuncTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/EndsWithFuncTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ErrorFuncTest.java935
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/EscapeHTMLURIFuncTest.java1024
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/FalseFuncTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/FloorFuncTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/HoursFromDateTimeFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/HoursFromDurationFuncTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/HoursFromTimeFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/IRIToURIfuncTest.java1209
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/InScopePrefixesFuncTest.java62
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/LocalNameFromQNameFuncTest.java284
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/LowerCaseFuncTest.java755
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/MatchesFuncTest.java1838
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/MinutesFromDateTimeFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/MinutesFromDurationFuncTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/MinutesFromTimeFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/MonthFromDateFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/MonthFromDateTimeFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/MonthsFromDurationFuncTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NameFuncTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NamespaceURIFromQNameFuncTest.java284
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NilledFuncTest.java136
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NodeLangFuncTest.java953
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NodeLocalNameFuncTest.java135
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NodeNamespaceURIFuncTest.java209
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NodeNumberFuncTest.java1617
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NodeRootFuncTest.java208
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NormalizeSpaceFuncTest.java977
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NormalizeUnicodeFuncTest.java792
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/NotFuncTest.java2245
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ReplaceFuncTest.java1613
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/ResolveURIFuncTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/RoundEvenFuncTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/RoundFuncTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SecondsFromDateTimeFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SecondsFromDurationFuncTest.java913
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SecondsFromTimeFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqAVGFuncTest.java6391
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqBooleanFuncTest.java3355
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqCollectionFuncTest.java358
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqCountFuncTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqDeepEqualFuncTest.java3577
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqDistinctValuesFuncTest.java2652
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqDocFuncTest.java580
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqExactlyOneFuncTest.java1504
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqExistsFuncTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqIDFuncTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqIDREFFuncTest.java99
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqIndexOfFuncTest.java840
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqInsertBeforeFuncTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqMAXFuncTest.java3984
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqMINFuncTest.java3984
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqOneOrMoreFuncTest.java1505
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqRemoveFuncTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqReverseFuncTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqSUMFuncTest.java6130
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqSubsequenceFuncTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqUnorderedFuncTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SeqZeroOrOneFuncTest.java1505
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/StartsWithFuncTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/StaticBaseURIFuncTest.java543
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/StringFuncTest.java1579
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/StringJoinFuncTest.java977
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/StringLengthFuncTest.java792
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/StringToCodepointFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SubstringAfterFuncTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SubstringBeforeFuncTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SubstringFuncTest.java792
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/SurrogatesTest.java580
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/TimezoneFromDateFuncTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/TimezoneFromDateTimeFuncTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/TimezoneFromTimeFuncTest.java765
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/TokenizeFuncTest.java1135
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/TraceFuncTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/TranslateFuncTest.java903
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/TrueFuncTest.java792
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/UpperCaseFuncTest.java755
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/YearFromDateFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/YearFromDateTimeFuncTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/YearsFromDurationFuncTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/functions/compareFuncTest.java1024
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/AllW3CNumericTests.java27
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericAddTest.java2208
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericDivideTest.java2097
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericEqualTest.java4872
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericGTTest.java2430
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericIntegerDivideTest.java1874
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericLTTest.java4835
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericModTest.java876
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericMultiplyTest.java1505
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericSubtractTest.java2356
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericUnaryMinusTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/numeric/NumericUnaryPlusTest.java1468
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/AllW3CSchemaTests.java33
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/CatalogTest.java136
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/MiscFunctionsTest.java728
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/NotationEQSITest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/NumericEqualSITest.java99
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/STAxesTest.java802
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/SeqExprCastSITest.java1801
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/UseCaseNSTest.java89
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/UseCaseSEQTest.java99
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/UseCaseSGMLTest.java284
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/UseCaseSTRINGTest.java62
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/UseCaseTREETest.java62
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/UserDefinedSITest.java395
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/ValidateExpressionTest.java839
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/ancestorAxisTest.java62
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/ancestorOrSelfAxisTest.java62
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/followingSiblingAxisTest.java62
-rw-r--r--tests/org.eclipse.wst.xml.xpath2.processor.tests/src/org/eclipse/wst/xml/xpath2/processor/testsuite/schema/precedingSiblingAxisTest.java62
15994 files changed, 0 insertions, 396122 deletions
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/.classpath b/tests/org.eclipse.wst.xml.xpath.core.tests/.classpath
deleted file mode 100644
index 1055890c..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/.classpath
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
- <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
- <accessrules>
- <accessrule kind="accessible" pattern="org/eclipse/wst/xml/xpath/**"/>
- </accessrules>
- </classpathentry>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/.project b/tests/org.eclipse.wst.xml.xpath.core.tests/.project
deleted file mode 100644
index 68dbbd93..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/.project
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.eclipse.wst.xml.xpath.core.tests</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.ManifestBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.SchemaBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.pde.PluginNature</nature>
- <nature>org.eclipse.jdt.core.javanature</nature>
- </natures>
-</projectDescription>
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/.settings/org.eclipse.jdt.core.prefs b/tests/org.eclipse.wst.xml.xpath.core.tests/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index 1f414fd0..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,7 +0,0 @@
-#Tue Apr 22 15:35:02 GMT-05:00 2008
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
-org.eclipse.jdt.core.compiler.compliance=1.5
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.source=1.5
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/META-INF/MANIFEST.MF b/tests/org.eclipse.wst.xml.xpath.core.tests/META-INF/MANIFEST.MF
deleted file mode 100644
index 8c61b3bf..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,16 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: %pluginName
-Bundle-SymbolicName: org.eclipse.wst.xml.xpath.core.tests
-Bundle-Version: 1.0.0.qualifier
-Bundle-Activator: org.eclipse.wst.xml.xpath.core.tests.XPathCoreTestPlugin
-Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
- org.junit;bundle-version="3.8.2",
- org.eclipse.wst.xml.xpath.core;bundle-version="[1.0.0,2.0.0)",
- org.apache.commons.jxpath;bundle-version="[1.2.0,1.3.0)"
-Bundle-ActivationPolicy: lazy
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Bundle-Vendor: %vendorName
-Export-Package: org.eclipse.wst.xml.xpath.core.tests;uses:="org.osgi.framework,junit.framework,org.eclipse.core.runtime",
- org.eclipse.wst.xsl.internal.core.xpath.tests;x-internal:=true
-Bundle-Localization: plugin
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/about.html b/tests/org.eclipse.wst.xml.xpath.core.tests/about.html
deleted file mode 100644
index 2199df3f..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/about.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<HTML>
-
-<head>
-<title>About</title>
-<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
-</head>
-
-<BODY lang="EN-US">
-
-<H3>About This Content</H3>
-
-<P>June, 2008</P>
-
-<H3>License</H3>
-
-<P>The Eclipse Foundation makes available all content in this plug-in
-("Content"). Unless otherwise indicated below, the Content is provided to you
-under the terms and conditions of the Eclipse Public License Version 1.0
-("EPL"). A copy of the EPL is available at
-<A href="http://www.eclipse.org/org/documents/epl-v10.php">http://www.eclipse.org/org/documents/epl-v10.php</A>.
-For purposes of the EPL, "Program" will mean the Content.</P>
-
-<P>If you did not receive this Content directly from the Eclipse Foundation, the
-Content is being redistributed by another party ("Redistributor") and different
-terms and conditions may apply to your use of any object code in the Content.
-Check the Redistributor’s license that was provided with the Content. If no such
-license exists, contact the Redistributor. Unless otherwise indicated below, the
-terms and conditions of the EPL still apply to any source code in the Content
-and such source code may be obtained at
-<A href="http://www.eclipse.org/">http://www.eclipse.org/</A>.</P>
-
-</BODY>
-</HTML>
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/build.properties b/tests/org.eclipse.wst.xml.xpath.core.tests/build.properties
deleted file mode 100644
index db06c0ab..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/build.properties
+++ /dev/null
@@ -1,9 +0,0 @@
-source.. = src/
-output.. = bin/
-bin.includes = META-INF/,\
- .,\
- bin/,\
- about.html,\
- plugin.properties
-src.includes = src/,\
- META-INF/
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/plugin.properties b/tests/org.eclipse.wst.xml.xpath.core.tests/plugin.properties
deleted file mode 100644
index 7a6991c8..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/plugin.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-#Properties file for org.eclipse.wst.xml.xpath.core.tests
-vendorName = Eclipse
-pluginName = XPath Tests Plug-in \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xml/xpath/core/tests/XPathCoreTestPlugin.java b/tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xml/xpath/core/tests/XPathCoreTestPlugin.java
deleted file mode 100644
index eacf634d..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xml/xpath/core/tests/XPathCoreTestPlugin.java
+++ /dev/null
@@ -1,52 +0,0 @@
-package org.eclipse.wst.xml.xpath.core.tests;
-
-import org.eclipse.core.runtime.Plugin;
-import org.osgi.framework.BundleContext;
-
-/**
- * The activator class controls the plug-in life cycle
- */
-public class XPathCoreTestPlugin extends Plugin {
-
- // The plug-in ID
- public static final String PLUGIN_ID = "org.eclipse.wst.xml.xpath.core.tests";
-
- // The shared instance
- private static XPathCoreTestPlugin plugin;
-
- /**
- * The constructor
- */
- public XPathCoreTestPlugin() {
- }
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
- */
- @Override
- public void start(BundleContext context) throws Exception {
- super.start(context);
- plugin = this;
- }
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
- */
- @Override
- public void stop(BundleContext context) throws Exception {
- plugin = null;
- super.stop(context);
- }
-
- /**
- * Returns the shared instance
- *
- * @return the shared instance
- */
- public static XPathCoreTestPlugin getDefault() {
- return plugin;
- }
-
-}
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xml/xpath/core/tests/XPathCoreTests.java b/tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xml/xpath/core/tests/XPathCoreTests.java
deleted file mode 100644
index 2bfbe5f1..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xml/xpath/core/tests/XPathCoreTests.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package org.eclipse.wst.xml.xpath.core.tests;
-
-import org.eclipse.wst.xsl.internal.core.xpath.tests.TestXSLXPathHelper;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-public class XPathCoreTests {
-
- public static Test suite() {
- TestSuite suite = new TestSuite(
- "Test for org.eclipse.wst.xml.xpath.core.tests");
- //$JUnit-BEGIN$
- suite.addTestSuite(TestXSLXPathHelper.class);
- //$JUnit-END$
- return suite;
- }
-
-}
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xsl/internal/core/xpath/tests/TestXSLXPathHelper.java b/tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xsl/internal/core/xpath/tests/TestXSLXPathHelper.java
deleted file mode 100644
index 7f28aa47..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/src/org/eclipse/wst/xsl/internal/core/xpath/tests/TestXSLXPathHelper.java
+++ /dev/null
@@ -1,74 +0,0 @@
-package org.eclipse.wst.xsl.internal.core.xpath.tests;
-
-import javax.xml.parsers.DocumentBuilder;
-import javax.xml.parsers.DocumentBuilderFactory;
-import javax.xml.parsers.ParserConfigurationException;
-import javax.xml.xpath.XPathExpressionException;
-
-import junit.framework.TestCase;
-import org.eclipse.wst.xml.xpath.core.util.XSLTXPathHelper;
-import org.w3c.dom.Attr;
-import org.w3c.dom.DOMImplementation;
-import org.w3c.dom.Document;
-import org.w3c.dom.Element;
-
-public class TestXSLXPathHelper extends TestCase {
-
- public void testInvalidXPath() {
- try {
- XSLTXPathHelper.compile("starts-with('123', '123', '123)");
- fail("Compiled successfully");
- } catch (XPathExpressionException ex) {
-
- }
- }
-
- public void testValidXPath() throws Exception {
- try {
- XSLTXPathHelper.compile("concat('123', '123')");
- } catch (XPathExpressionException ex) {
- fail("Failed to compile.");
- throw new Exception(ex.getMessage());
- }
- }
-
- public void testcreateXPathFromNode() throws Exception {
- DOMImplementation domImpl = createDOMImpl();
- Document document = domImpl.createDocument(null, "test", null);
- assertEquals("Unexpected XPath value", "/test", XSLTXPathHelper.calculateXPathToNode(document.getFirstChild()));
- }
-
- private DOMImplementation createDOMImpl()
- throws ParserConfigurationException {
- DocumentBuilderFactory documentFactory = DocumentBuilderFactory.newInstance();
- DocumentBuilder builder = documentFactory.newDocumentBuilder();
- DOMImplementation domImpl = builder.getDOMImplementation();
- return domImpl;
- }
-
- public void testCreateXPathFromNodeMultiple() throws Exception {
- DOMImplementation domImpl = createDOMImpl();
- Document document = domImpl.createDocument(null, "test", null);
- Element rootelem = document.getDocumentElement();
- Element elem1 = document.createElement("testNode1");
- Element elem2 = document.createElement("testNode1");
- rootelem.appendChild(elem1);
- rootelem.appendChild(elem2);
- assertEquals("Unexepected XPath value", "/test/testNode1[2]", XSLTXPathHelper.calculateXPathToNode(elem2));
- }
-
- public void testCreateXPathFromNodeAttribute() throws Exception {
- DOMImplementation domImpl = createDOMImpl();
- Document document = domImpl.createDocument(null, "test", null);
- Element rootelem = document.getDocumentElement();
- Element elem1 = document.createElement("testNode1");
- Element elem2 = document.createElement("testNode1");
- rootelem.appendChild(elem1);
- rootelem.appendChild(elem2);
- Attr attribute = document.createAttribute("attr");
- attribute.setValue("some value");
- elem2.setAttributeNode(attribute);
- assertEquals("Unexpected XPath value", "/test/testNode1[2]/@attr", XSLTXPathHelper.calculateXPathToNode(attribute));
- }
-
-}
diff --git a/tests/org.eclipse.wst.xml.xpath.core.tests/test.xml b/tests/org.eclipse.wst.xml.xpath.core.tests/test.xml
deleted file mode 100644
index 38c77934..00000000
--- a/tests/org.eclipse.wst.xml.xpath.core.tests/test.xml
+++ /dev/null
@@ -1,115 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<project
- name="testsuite"
- default="run"
- basedir=".">
-
- <!-- The following properties should be passed into this script -->
- <!-- ${eclipse-home} -->
- <!-- ${buildDirectory} -->
- <!-- ${buildLabel} -->
-
- <!-- should be little need to change what's above -->
-
- <property
- name="plugin-name"
- value="org.eclipse.wst.xml.xpath.core.tests" />
- <property
- name="classname"
- value="org.eclipse.wst.xml.xpath.core.tests.XPathCoreTests" />
- <property
- name="testType"
- value="core-test" />
-
- <!-- should be little need to change what's below -->
-
- <echo message="basedir: ${basedir}" />
- <echo message="eclipse-home: ${eclipse-home}" />
- <echo message="buildDirectory: ${buildDirectory}" />
- <echo message="plugin-name: ${plugin-name}" />
- <echo message="classname: ${classname}" />
- <echo message="testType ${testType}" />
-
-
- <property
- name="library-file"
- value="${eclipse-home}/plugins/org.eclipse.test_3.1.0/library.xml" />
- <property
- name="workspace"
- value="${eclipse-home}/junitworkspaces/${plugin-name}" />
-
- <!-- This target holds all initialization code that needs to be done for -->
- <!-- all tests that are to be run. Initialization for individual tests -->
- <!-- should be done within the body of the suite target. -->
- <target name="init">
- <tstamp />
- <delete>
- <fileset
- dir="${eclipse-home}"
- includes="${plugin-name}.*xml" />
- </delete>
- <!-- make directory, in case path doesn't exist yet -->
- <mkdir dir="${workspace}" />
- <!-- but delete to make sure fresh contents-->
- <delete
- dir="${workspace}"
- quiet="true" />
-
- </target>
-
- <!-- This target defines the tests that need to be run. -->
- <target name="suite">
-
- <ant
- target="${testType}"
- antfile="${library-file}"
- dir="${eclipse-home}">
- <property
- name="data-dir"
- value="${workspace}" />
- <property
- name="plugin-name"
- value="${plugin-name}" />
- <property
- name="classname"
- value="${classname}" />
- <property
- name="plugin-path"
- value="${eclipse-home}/plugins/${plugin-name}" />
- </ant>
-
- <copy
- failonerror="false"
- file="${workspace}/.metadata/.log"
- tofile="${buildDirectory}/${buildLabel}/testResults/consolelogs/${plugin-name}.consolelog.txt" />
-
- </target>
-
- <!-- This target holds code to cleanup the testing environment after -->
- <!-- after all of the tests have been run. You can use this target to -->
- <!-- delete temporary files that have been created. -->
- <target name="cleanup">
- <!-- usually no need to delete workspace until next run, and leaving it allows inspection -->
- <!-- <delete dir="${workspace}" quiet="true" /> -->
- </target>
-
- <!-- This target runs the test suite. Any actions that need to happen -->
- <!-- after all the tests have been run should go here. -->
- <target
- name="run"
- depends="init,suite,cleanup">
- <ant
- target="collect"
- antfile="${library-file}"
- dir="${eclipse-home}">
- <property
- name="includes"
- value="${plugin-name}.*xml" />
- <property
- name="output-file"
- value="${plugin-name}.xml" />
- </ant>
- </target>
-
-</project> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs029.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs029.xq
deleted file mode 100644
index 0c53628d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs029.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs029:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs030.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs030.xq
deleted file mode 100644
index f8756ae6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs030.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs030:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(-P1Y1M1DT1H1M1.123S) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:untypedAtomic("-P1Y1M1DT1H1M1.123S") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs031.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs031.xq
deleted file mode 100644
index eb92caf6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs031.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs031:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(P24M) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:untypedAtomic("P24M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs032.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs032.xq
deleted file mode 100644
index 9b3cbcd2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs032.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs032:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(-P21M) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:untypedAtomic("-P21M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs033.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs033.xq
deleted file mode 100644
index bec2762c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs033.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs033:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs034.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs034.xq
deleted file mode 100644
index da6c56a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs034.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs034:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(-P1Y1M1DT1H1M1.123S) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:untypedAtomic("-P1Y1M1DT1H1M1.123S") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs035.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs035.xq
deleted file mode 100644
index 6dd328de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs035.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs035:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(P3DT10H30M) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:untypedAtomic("P3DT10H30M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs036.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs036.xq
deleted file mode 100644
index 83ff9fc9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs036.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs036:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(-PT100M) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:untypedAtomic("-PT100M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs037.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs037.xq
deleted file mode 100644
index 58cbf26a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs037.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs037:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs038.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs038.xq
deleted file mode 100644
index 14e09964..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs038.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs038:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(1999-05-31T13:20:00) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:untypedAtomic("1999-05-31T13:20:00") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs039.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs039.xq
deleted file mode 100644
index 54f4f122..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs039.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs039:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(-1999-05-31T13:20:00+14:00) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:untypedAtomic("-1999-05-31T13:20:00+14:00") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs040.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs040.xq
deleted file mode 100644
index bdc4945b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs040.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs040:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(2000-01-16T00:00:00Z) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:untypedAtomic("2000-01-16T00:00:00Z") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs041.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs041.xq
deleted file mode 100644
index 90a22dac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs041.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs041:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs042.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs042.xq
deleted file mode 100644
index 86cd7002..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs042.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs042:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(13:20:00-05:00) castable as xs:time:)
-(:*******************************************************:)
-
-xs:untypedAtomic("13:20:00-05:00") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs043.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs043.xq
deleted file mode 100644
index e54b6c49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs043.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs043:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(13:20:02.123) castable as xs:time:)
-(:*******************************************************:)
-
-xs:untypedAtomic("13:20:02.123") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs044.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs044.xq
deleted file mode 100644
index 4ad1f3ec..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs044.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs044:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(13:20:00Z) castable as xs:time:)
-(:*******************************************************:)
-
-xs:untypedAtomic("13:20:00Z") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs045.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs045.xq
deleted file mode 100644
index 01154b9b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs045.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs045:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:time:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs046.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs046.xq
deleted file mode 100644
index 964c0cdf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs046.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs046:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(1999-05-31) castable as xs:date:)
-(:*******************************************************:)
-
-xs:untypedAtomic("1999-05-31") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs047.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs047.xq
deleted file mode 100644
index 0d26858d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs047.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs047:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(-0012-12-03-05:00) castable as xs:date:)
-(:*******************************************************:)
-
-xs:untypedAtomic("-0012-12-03-05:00") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs048.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs048.xq
deleted file mode 100644
index ded3c751..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs048.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs048:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(1999-05-31Z) castable as xs:date:)
-(:*******************************************************:)
-
-xs:untypedAtomic("1999-05-31Z") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs049.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs049.xq
deleted file mode 100644
index 222c8703..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs049.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs049:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:date:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs050.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs050.xq
deleted file mode 100644
index 50037dae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs050.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs050:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(1999-05) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:untypedAtomic("1999-05") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs051.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs051.xq
deleted file mode 100644
index 4ab76f98..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs051.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs051:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(-0012-12-05:00) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:untypedAtomic("-0012-12-05:00") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs052.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs052.xq
deleted file mode 100644
index 7bfb6555..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs052.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs052:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(1999-05Z) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:untypedAtomic("1999-05Z") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs053.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs053.xq
deleted file mode 100644
index b95c967f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs053.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs053:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:17-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs054.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs054.xq
deleted file mode 100644
index 2002b9f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs054.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs054:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(1999) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:untypedAtomic("1999") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs055.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs055.xq
deleted file mode 100644
index 84431fc4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs055.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs055:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(-0012-05:00) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:untypedAtomic("-0012-05:00") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs056.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs056.xq
deleted file mode 100644
index 5a608164..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs056.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs056:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(1999Z) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:untypedAtomic("1999Z") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs057.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs057.xq
deleted file mode 100644
index bba3ab07..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs057.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs057:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs058.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs058.xq
deleted file mode 100644
index 89bbed51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs058.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs058:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(--05-31) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:untypedAtomic("--05-31") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs059.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs059.xq
deleted file mode 100644
index 0e5aff26..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs059.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs059:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(--05-31+14:00) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:untypedAtomic("--05-31+14:00") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs060.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs060.xq
deleted file mode 100644
index a9c4184f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs060.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs060:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(--05-31Z) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:untypedAtomic("--05-31Z") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs061.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs061.xq
deleted file mode 100644
index 36b42ec3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs061.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs061:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs062.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs062.xq
deleted file mode 100644
index 75181ed8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs062.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs062:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(---31) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:untypedAtomic("---31") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs063.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs063.xq
deleted file mode 100644
index 12e35690..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs063.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs063:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(---03-05:00) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:untypedAtomic("---03-05:00") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs064.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs064.xq
deleted file mode 100644
index 474f3c18..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs064.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs064:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(---31Z) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:untypedAtomic("---31Z") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs065.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs065.xq
deleted file mode 100644
index 74855ca1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs065.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs065:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs066.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs066.xq
deleted file mode 100644
index 42447d18..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs066.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs066:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(--05) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:untypedAtomic("--05") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs067.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs067.xq
deleted file mode 100644
index cb2a9236..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs067.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs067:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(--12-05:00) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:untypedAtomic("--12-05:00") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs068.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs068.xq
deleted file mode 100644
index c9b46ab4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs068.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs068:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(--05Z) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:untypedAtomic("--05Z") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs069.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs069.xq
deleted file mode 100644
index 95db5307..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs069.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs069:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs070.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs070.xq
deleted file mode 100644
index 21f8b411..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs070.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs070:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(0.0) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:untypedAtomic("0.0") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs071.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs071.xq
deleted file mode 100644
index af792e20..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs071.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs071:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(0) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:untypedAtomic("0") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs072.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs072.xq
deleted file mode 100644
index 15105394..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs072.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs072:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs073.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs073.xq
deleted file mode 100644
index ae7bb22e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs073.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs073:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs074.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs074.xq
deleted file mode 100644
index 681b105b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs074.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs074:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(00000000) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:untypedAtomic("00000000") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs075.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs075.xq
deleted file mode 100644
index de84c598..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs075.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs075:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(D74D35D35D35) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:untypedAtomic("D74D35D35D35") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs076.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs076.xq
deleted file mode 100644
index 267a7f6d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs076.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs076:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs077.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs077.xq
deleted file mode 100644
index d7673c84..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs077.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs077:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(010010101) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:untypedAtomic("010010101") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs078.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs078.xq
deleted file mode 100644
index eed66473..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs078.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs078:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(0fb7) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:untypedAtomic("0fb7") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs079.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs079.xq
deleted file mode 100644
index b4f64e33..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs079.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs079:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(D74D35D35D35) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:untypedAtomic("D74D35D35D35") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs080.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs080.xq
deleted file mode 100644
index 32655ab4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs080.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs080:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(-0012-05:00) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:untypedAtomic("http://www.example.com/~b%C3%A9b%C3%A9") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs081.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs081.xq
deleted file mode 100644
index 0983c0c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs081.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs081:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(true) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:untypedAtomic("true") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs082.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs082.xq
deleted file mode 100644
index b4f1172b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs082.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs082:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:untypedAtomic(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:untypedAtomic("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs083.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs083.xq
deleted file mode 100644
index 86093766..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs083.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs083:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(INF) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:string("INF") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs084.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs084.xq
deleted file mode 100644
index c18cc615..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs084.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs084:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(0.0E0) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:string("0.0E0") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs085.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs085.xq
deleted file mode 100644
index 78e1d027..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs085.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs085:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs086.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs086.xq
deleted file mode 100644
index 897483c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs086.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs086:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(INF) castable as xs:string:)
-(:*******************************************************:)
-
-xs:string("INF") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs087.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs087.xq
deleted file mode 100644
index 116b7b88..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs087.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs087:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(0.0E0) castable as xs:string:)
-(:*******************************************************:)
-
-xs:string("0.0E0") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs088.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs088.xq
deleted file mode 100644
index 86bb9ec1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs088.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs088:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:string:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs089.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs089.xq
deleted file mode 100644
index fb041a89..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs089.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs089:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(-0.0E0) castable as xs:float:)
-(:*******************************************************:)
-
-xs:string("-0.0E0") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs090.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs090.xq
deleted file mode 100644
index 64c713ca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs090.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs090:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(NaN) castable as xs:float:)
-(:*******************************************************:)
-
-xs:string("NaN") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs091.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs091.xq
deleted file mode 100644
index ccabdfe6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs091.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs091:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(1e-5) castable as xs:float:)
-(:*******************************************************:)
-
-xs:string("1e-5") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs092.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs092.xq
deleted file mode 100644
index f081943a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs092.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs092:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(-10000000) castable as xs:float:)
-(:*******************************************************:)
-
-xs:string("-10000000") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs093.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs093.xq
deleted file mode 100644
index cda4e49b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs093.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs093:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:float:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs094.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs094.xq
deleted file mode 100644
index 66f7a04c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs094.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs094:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(-0.0E0) castable as xs:double:)
-(:*******************************************************:)
-
-xs:string("-0.0E0") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs095.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs095.xq
deleted file mode 100644
index cb1b425c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs095.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs095:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(NaN) castable as xs:double:)
-(:*******************************************************:)
-
-xs:string("NaN") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs096.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs096.xq
deleted file mode 100644
index f618fac3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs096.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs096:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(1e-5) castable as xs:double:)
-(:*******************************************************:)
-
-xs:string("1e-5") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs097.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs097.xq
deleted file mode 100644
index 0d1edce5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs097.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs097:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(-10000000) castable as xs:double:)
-(:*******************************************************:)
-
-xs:string("-10000000") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs098.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs098.xq
deleted file mode 100644
index 5531f1e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs098.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs098:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:double:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs099.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs099.xq
deleted file mode 100644
index 1f06659d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs099.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs099:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(-0.0E0) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:string("-0.0E0") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs100.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs100.xq
deleted file mode 100644
index e87b3d57..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs100.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs100:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(NaN) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:string("NaN") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs101.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs101.xq
deleted file mode 100644
index 544bab3c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs101.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs101:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(1e-5) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:string("1e-5") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs102.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs102.xq
deleted file mode 100644
index 760052ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs102.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs102:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(5.5432) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:string("5.5432") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs103.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs103.xq
deleted file mode 100644
index 14d8a7f6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs103.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs103:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs104.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs104.xq
deleted file mode 100644
index 3c035cca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs104.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs104:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(-0.0E0) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:string("-0.0E0") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs105.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs105.xq
deleted file mode 100644
index eee680b0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs105.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs105:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(NaN) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:string("NaN") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs106.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs106.xq
deleted file mode 100644
index e74b259a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs106.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs106:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(1e-5) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:string("1e-5") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs107.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs107.xq
deleted file mode 100644
index c5fefb5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs107.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs107:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(-1.1234) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:string("-1.1234") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs108.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs108.xq
deleted file mode 100644
index 9400b0be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs108.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs108:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs109.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs109.xq
deleted file mode 100644
index d6ac40e7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs109.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs109:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(P1Y2M3DT10H30M23S) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:string("P1Y2M3DT10H30M23S") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs110.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs110.xq
deleted file mode 100644
index a035789c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs110.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs110:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:18-07:00:)
-(:Purpose:Try xs:string(-P1Y1M1DT1H1M1.123S) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:string("-P1Y1M1DT1H1M1.123S") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs111.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs111.xq
deleted file mode 100644
index d0696c0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs111.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs111:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs112.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs112.xq
deleted file mode 100644
index 1bee9d48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs112.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs112:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(-P1Y1M1DT1H1M1.123S) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:string("-P1Y1M1DT1H1M1.123S") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs113.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs113.xq
deleted file mode 100644
index 0772b296..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs113.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs113:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(P24M) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:string("P24M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs114.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs114.xq
deleted file mode 100644
index 3b60ea98..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs114.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs114:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(-P21M) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:string("-P21M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs115.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs115.xq
deleted file mode 100644
index 54950e93..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs115.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs115:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs116.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs116.xq
deleted file mode 100644
index a62a48f6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs116.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs116:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(-P1Y1M1DT1H1M1.123S) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:string("-P1Y1M1DT1H1M1.123S") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs117.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs117.xq
deleted file mode 100644
index 47176eba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs117.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs117:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(P3DT10H30M) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:string("P3DT10H30M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs118.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs118.xq
deleted file mode 100644
index 4cb411c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs118.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs118:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(-PT100M) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:string("-PT100M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs119.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs119.xq
deleted file mode 100644
index 5968ff00..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs119.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs119:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs120.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs120.xq
deleted file mode 100644
index 09b54ae2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs120.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs120:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(1999-05-31T13:20:00) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:string("1999-05-31T13:20:00") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs121.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs121.xq
deleted file mode 100644
index 3bd436bc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs121.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs121:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(-1999-05-31T13:20:00+14:00) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:string("-1999-05-31T13:20:00+14:00") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs122.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs122.xq
deleted file mode 100644
index 39d7d359..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs122.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs122:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(2000-01-16T00:00:00Z) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:string("2000-01-16T00:00:00Z") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs123.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs123.xq
deleted file mode 100644
index 1d31bb41..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs123.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs123:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs124.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs124.xq
deleted file mode 100644
index 130ec119..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs124.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs124:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(13:20:00-05:00) castable as xs:time:)
-(:*******************************************************:)
-
-xs:string("13:20:00-05:00") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs125.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs125.xq
deleted file mode 100644
index dbfc5c05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs125.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs125:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(13:20:02.123) castable as xs:time:)
-(:*******************************************************:)
-
-xs:string("13:20:02.123") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs126.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs126.xq
deleted file mode 100644
index d5c9ac2d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs126.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs126:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(13:20:00Z) castable as xs:time:)
-(:*******************************************************:)
-
-xs:string("13:20:00Z") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs127.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs127.xq
deleted file mode 100644
index 280e8ed5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs127.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs127:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:time:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs128.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs128.xq
deleted file mode 100644
index b8f7b450..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs128.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs128:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(1999-05-31) castable as xs:date:)
-(:*******************************************************:)
-
-xs:string("1999-05-31") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs129.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs129.xq
deleted file mode 100644
index 797102a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs129.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs129:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(-0012-12-03-05:00) castable as xs:date:)
-(:*******************************************************:)
-
-xs:string("-0012-12-03-05:00") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs130.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs130.xq
deleted file mode 100644
index fe76806e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs130.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs130:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(1999-05-31Z) castable as xs:date:)
-(:*******************************************************:)
-
-xs:string("1999-05-31Z") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs131.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs131.xq
deleted file mode 100644
index eb7b4ca3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs131.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs131:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:date:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs132.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs132.xq
deleted file mode 100644
index a9afc407..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs132.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs132:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(1999-05) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:string("1999-05") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs133.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs133.xq
deleted file mode 100644
index 9bb2185e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs133.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs133:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(-0012-12-05:00) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:string("-0012-12-05:00") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs134.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs134.xq
deleted file mode 100644
index 80863911..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs134.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs134:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(1999-05Z) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:string("1999-05Z") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs135.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs135.xq
deleted file mode 100644
index 037501c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs135.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs135:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs136.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs136.xq
deleted file mode 100644
index 160c1ec5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs136.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs136:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(1999) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:string("1999") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs137.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs137.xq
deleted file mode 100644
index 1bed9f6f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs137.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs137:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(-0012-05:00) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:string("-0012-05:00") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs138.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs138.xq
deleted file mode 100644
index b9b3d13e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs138.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs138:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(1999Z) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:string("1999Z") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs139.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs139.xq
deleted file mode 100644
index 825c3aca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs139.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs139:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs140.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs140.xq
deleted file mode 100644
index c38895d1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs140.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs140:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(--05-31) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:string("--05-31") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs141.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs141.xq
deleted file mode 100644
index 745e7789..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs141.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs141:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(--05-31+14:00) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:string("--05-31+14:00") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs142.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs142.xq
deleted file mode 100644
index 15f767e1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs142.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs142:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(--05-31Z) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:string("--05-31Z") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs143.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs143.xq
deleted file mode 100644
index dc75e5a0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs143.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs143:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs144.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs144.xq
deleted file mode 100644
index 512c10c2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs144.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs144:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(---31) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:string("---31") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs145.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs145.xq
deleted file mode 100644
index cd77b0d8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs145.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs145:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(---03-05:00) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:string("---03-05:00") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs146.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs146.xq
deleted file mode 100644
index 7b4ad69c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs146.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs146:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(---31Z) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:string("---31Z") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs147.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs147.xq
deleted file mode 100644
index dcba14e5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs147.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs147:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs148.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs148.xq
deleted file mode 100644
index 00a20d20..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs148.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs148:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(--05) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:string("--05") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs149.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs149.xq
deleted file mode 100644
index 9cbe1bfd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs149.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs149:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(--12-05:00) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:string("--12-05:00") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs150.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs150.xq
deleted file mode 100644
index 64aa4868..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs150.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs150:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(--05Z) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:string("--05Z") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs151.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs151.xq
deleted file mode 100644
index 1a5aafaa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs151.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs151:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs152.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs152.xq
deleted file mode 100644
index 19177b46..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs152.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs152:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(0.0) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:string("0.0") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs153.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs153.xq
deleted file mode 100644
index 6772b6c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs153.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs153:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(0) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:string("0") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs154.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs154.xq
deleted file mode 100644
index e11c1d61..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs154.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs154:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs155.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs155.xq
deleted file mode 100644
index 07f26f99..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs155.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs155:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs156.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs156.xq
deleted file mode 100644
index 5d1945ef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs156.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs156:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(00000000) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:string("00000000") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs157.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs157.xq
deleted file mode 100644
index 694921f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs157.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs157:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(D74D35D35D35) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:string("D74D35D35D35") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs158.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs158.xq
deleted file mode 100644
index 713ef4f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs158.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs158:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs159.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs159.xq
deleted file mode 100644
index 41dcf29e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs159.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs159:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(010010101) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:string("010010101") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs160.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs160.xq
deleted file mode 100644
index cb360814..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs160.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs160:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(0fb7) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:string("0fb7") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs161.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs161.xq
deleted file mode 100644
index d9edb236..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs161.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs161:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(D74D35D35D35) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:string("D74D35D35D35") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs162.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs162.xq
deleted file mode 100644
index b5732dd9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs162.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs162:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(-0012-05:00) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:string("http://www.example.com/~b%C3%A9b%C3%A9") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs163.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs163.xq
deleted file mode 100644
index 92ec30e5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs163.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs163:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(true) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:string("true") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs164.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs164.xq
deleted file mode 100644
index 7d8d6076..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs164.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs164:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:string(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:string("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs165.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs165.xq
deleted file mode 100644
index f9e41331..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs165.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs165:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:float(1e5) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:float("1e5") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs166.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs166.xq
deleted file mode 100644
index 8b098084..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs166.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs166:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:float(-INF) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:float("-INF") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs167.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs167.xq
deleted file mode 100644
index f615f6d7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs167.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs167:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:float(-0.0E0) castable as xs:string:)
-(:*******************************************************:)
-
-xs:float("-0.0E0") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs168.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs168.xq
deleted file mode 100644
index 961d7b59..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs168.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs168:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:float(NaN) castable as xs:string:)
-(:*******************************************************:)
-
-xs:float("NaN") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs169.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs169.xq
deleted file mode 100644
index d2b0315b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs169.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs169:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:19-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:float:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs170.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs170.xq
deleted file mode 100644
index fcfbe8e5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs170.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs170:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(-1.75e-3) castable as xs:float:)
-(:*******************************************************:)
-
-xs:float("-1.75e-3") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs171.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs171.xq
deleted file mode 100644
index c0cb7f67..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs171.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs171:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(INF) castable as xs:float:)
-(:*******************************************************:)
-
-xs:float("INF") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs172.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs172.xq
deleted file mode 100644
index 36cb7ce4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs172.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs172:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(-0.0E0) castable as xs:double:)
-(:*******************************************************:)
-
-xs:float("-0.0E0") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs173.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs173.xq
deleted file mode 100644
index ca7af700..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs173.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs173:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(-INF) castable as xs:double:)
-(:*******************************************************:)
-
-xs:float("-INF") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs174.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs174.xq
deleted file mode 100644
index 2ace7a23..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs174.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs174:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(-0.0E0) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:float("-0.0E0") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs175.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs175.xq
deleted file mode 100644
index 6bac6442..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs175.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs175:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs176.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs176.xq
deleted file mode 100644
index 26ca688d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs176.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs176:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(1e5) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:float("1e5") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs177.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs177.xq
deleted file mode 100644
index d23bb4e0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs177.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs177:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(-1.75e-3) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:float("-1.75e-3") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs178.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs178.xq
deleted file mode 100644
index 5212650d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs178.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs178:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(-0.0E0) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:float("-0.0E0") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs179.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs179.xq
deleted file mode 100644
index da72fb3e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs179.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs179:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(1e5) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:float("1e5") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs180.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs180.xq
deleted file mode 100644
index 26d6cbb1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs180.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs180:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(INF) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:float("INF") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs181.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs181.xq
deleted file mode 100644
index 92d187f1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs181.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs181:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(-1.75e-3) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:float("-1.75e-3") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs182.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs182.xq
deleted file mode 100644
index f1550bcf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs182.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs182:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs183.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs183.xq
deleted file mode 100644
index 05142707..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs183.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs183:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs184.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs184.xq
deleted file mode 100644
index ca929cc7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs184.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs184:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs185.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs185.xq
deleted file mode 100644
index 2769f714..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs185.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs185:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:time:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs186.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs186.xq
deleted file mode 100644
index 6b6ac1a5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs186.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs186:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:date:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs187.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs187.xq
deleted file mode 100644
index c0543b0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs187.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs187:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs188.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs188.xq
deleted file mode 100644
index 2b1c739e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs188.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs188:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs189.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs189.xq
deleted file mode 100644
index e67351a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs189.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs189:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs190.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs190.xq
deleted file mode 100644
index 0adccc97..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs190.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs190:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs191.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs191.xq
deleted file mode 100644
index 455abad3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs191.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs191:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs192.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs192.xq
deleted file mode 100644
index 920e2749..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs192.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs192:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(-0.0E0) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:float("-0.0E0") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs193.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs193.xq
deleted file mode 100644
index 7dc66661..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs193.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs193:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(1e5) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:float("1e5") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs194.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs194.xq
deleted file mode 100644
index f58377ce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs194.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs194:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(-INF) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:float("-INF") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs195.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs195.xq
deleted file mode 100644
index 5c70353b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs195.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs195:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(NaN) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:float("NaN") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs196.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs196.xq
deleted file mode 100644
index 1a6c36be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs196.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs196:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs197.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs197.xq
deleted file mode 100644
index a3b628dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs197.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs197:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs198.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs198.xq
deleted file mode 100644
index 086e25ca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs198.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs198:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:float(5.4321E-100) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:float("5.4321E-100") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs199.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs199.xq
deleted file mode 100644
index 200212a3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs199.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs199:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs200.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs200.xq
deleted file mode 100644
index ffe1f0ad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs200.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs200:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(INF) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:double("INF") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs201.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs201.xq
deleted file mode 100644
index b36cec03..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs201.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs201:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e8) castable as xs:string:)
-(:*******************************************************:)
-
-xs:double("1e8") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs202.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs202.xq
deleted file mode 100644
index 91b74dab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs202.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs202:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(INF) castable as xs:string:)
-(:*******************************************************:)
-
-xs:double("INF") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs203.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs203.xq
deleted file mode 100644
index 8bbfacc5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs203.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs203:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(-0.0E0) castable as xs:float:)
-(:*******************************************************:)
-
-xs:double("-0.0E0") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs204.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs204.xq
deleted file mode 100644
index f6fbe68c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs204.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs204:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(5.4321E-1001) castable as xs:float:)
-(:*******************************************************:)
-
-xs:double("5.4321E-1001") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs205.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs205.xq
deleted file mode 100644
index 0f6df4d8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs205.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs205:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:float:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs206.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs206.xq
deleted file mode 100644
index 7c76ee0f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs206.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs206:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(-1.75e-3) castable as xs:float:)
-(:*******************************************************:)
-
-xs:double("-1.75e-3") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs207.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs207.xq
deleted file mode 100644
index 06112c62..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs207.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs207:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(NaN) castable as xs:float:)
-(:*******************************************************:)
-
-xs:double("NaN") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs208.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs208.xq
deleted file mode 100644
index 96c64a82..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs208.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs208:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:double:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs209.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs209.xq
deleted file mode 100644
index 9e9ecc87..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs209.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs209:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(INF) castable as xs:double:)
-(:*******************************************************:)
-
-xs:double("INF") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs210.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs210.xq
deleted file mode 100644
index 5e0b3034..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs210.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs210:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(-0.0E0) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:double("-0.0E0") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs211.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs211.xq
deleted file mode 100644
index 15f3ab18..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs211.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs211:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(5.4321E-1001) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:double("5.4321E-1001") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs212.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs212.xq
deleted file mode 100644
index 9eec9489..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs212.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs212:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(-1.75e-3) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:double("-1.75e-3") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs213.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs213.xq
deleted file mode 100644
index 0bbadf52..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs213.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs213:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(INF) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:double("INF") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs214.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs214.xq
deleted file mode 100644
index 10aa68ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs214.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs214:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(-0.0E0) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:double("-0.0E0") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs215.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs215.xq
deleted file mode 100644
index 676926d5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs215.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs215:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs216.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs216.xq
deleted file mode 100644
index c32aa092..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs216.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs216:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(-1.75e-3) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:double("-1.75e-3") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs217.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs217.xq
deleted file mode 100644
index 0a30d681..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs217.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs217:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(INF) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:double("INF") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs218.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs218.xq
deleted file mode 100644
index 60fcd7d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs218.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs218:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(NaN) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:double("NaN") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs219.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs219.xq
deleted file mode 100644
index 983718ca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs219.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs219:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs220.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs220.xq
deleted file mode 100644
index 659e916d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs220.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs220:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs221.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs221.xq
deleted file mode 100644
index d8b48937..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs221.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs221:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs222.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs222.xq
deleted file mode 100644
index 0c143602..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs222.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs222:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs223.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs223.xq
deleted file mode 100644
index 5069d2fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs223.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs223:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:time:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs224.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs224.xq
deleted file mode 100644
index 82b8bd17..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs224.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs224:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:date:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs225.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs225.xq
deleted file mode 100644
index e7bcc392..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs225.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs225:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs226.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs226.xq
deleted file mode 100644
index bb289c90..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs226.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs226:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs227.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs227.xq
deleted file mode 100644
index 25c999e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs227.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs227:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs228.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs228.xq
deleted file mode 100644
index 26463d65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs228.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs228:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs229.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs229.xq
deleted file mode 100644
index 819ab654..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs229.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs229:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs230.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs230.xq
deleted file mode 100644
index 33a88196..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs230.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs230:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs231.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs231.xq
deleted file mode 100644
index 186fe002..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs231.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs231:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs232.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs232.xq
deleted file mode 100644
index d040ec74..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs232.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs232:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs233.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs233.xq
deleted file mode 100644
index 399d1018..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs233.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs233:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:double(1e5) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:double("1e5") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs234.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs234.xq
deleted file mode 100644
index 48d1c6e0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs234.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs234:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs235.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs235.xq
deleted file mode 100644
index 308cacb6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs235.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs235:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:string:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs236.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs236.xq
deleted file mode 100644
index e674a1b8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs236.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs236:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:float:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs237.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs237.xq
deleted file mode 100644
index 01272f46..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs237.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs237:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:double:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs238.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs238.xq
deleted file mode 100644
index cf9adecd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs238.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs238:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs239.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs239.xq
deleted file mode 100644
index c0bf80e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs239.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs239:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs240.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs240.xq
deleted file mode 100644
index e9a7574e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs240.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs240:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(5.5432) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:decimal("5.5432") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs241.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs241.xq
deleted file mode 100644
index fb717003..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs241.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs241:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs242.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs242.xq
deleted file mode 100644
index d673882d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs242.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs242:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs243.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs243.xq
deleted file mode 100644
index 599bf6ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs243.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs243:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs244.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs244.xq
deleted file mode 100644
index 0b225556..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs244.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs244:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs245.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs245.xq
deleted file mode 100644
index 2a0d5a46..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs245.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs245:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:time:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs246.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs246.xq
deleted file mode 100644
index 4e317979..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs246.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs246:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:date:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs247.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs247.xq
deleted file mode 100644
index 2ff9a8da..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs247.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs247:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs248.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs248.xq
deleted file mode 100644
index 313fac17..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs248.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs248:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs249.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs249.xq
deleted file mode 100644
index a8a35862..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs249.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs249:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs250.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs250.xq
deleted file mode 100644
index 2b00c150..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs250.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs250:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs251.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs251.xq
deleted file mode 100644
index 77e4c826..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs251.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs251:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs252.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs252.xq
deleted file mode 100644
index 87c6ade2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs252.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs252:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs253.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs253.xq
deleted file mode 100644
index 40cde9af..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs253.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs253:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs254.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs254.xq
deleted file mode 100644
index 9199cc03..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs254.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs254:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs255.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs255.xq
deleted file mode 100644
index a7311e41..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs255.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs255:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:decimal(-1.1234) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:decimal("-1.1234") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs256.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs256.xq
deleted file mode 100644
index 550dc683..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs256.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs256:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(1) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:integer("1") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs257.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs257.xq
deleted file mode 100644
index 3a7cee4e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs257.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs257:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:string:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs258.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs258.xq
deleted file mode 100644
index 237a9bd3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs258.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs258:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:float:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs259.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs259.xq
deleted file mode 100644
index 5acac657..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs259.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs259:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:double:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs260.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs260.xq
deleted file mode 100644
index 71344910..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs260.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs260:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs261.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs261.xq
deleted file mode 100644
index 08dadf4e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs261.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs261:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs262.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs262.xq
deleted file mode 100644
index efc1bfde..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs262.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs262:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs263.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs263.xq
deleted file mode 100644
index 0418482e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs263.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs263:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs264.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs264.xq
deleted file mode 100644
index d673b33c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs264.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs264:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs265.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs265.xq
deleted file mode 100644
index df7edad0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs265.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs265:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs266.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs266.xq
deleted file mode 100644
index bd6fec74..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs266.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs266:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:time:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs267.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs267.xq
deleted file mode 100644
index d3b1be98..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs267.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs267:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:date:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs268.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs268.xq
deleted file mode 100644
index e3df789b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs268.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs268:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs269.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs269.xq
deleted file mode 100644
index b43282d9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs269.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs269:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs270.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs270.xq
deleted file mode 100644
index cea1ac6f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs270.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs270:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs271.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs271.xq
deleted file mode 100644
index 567b821d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs271.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs271:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs272.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs272.xq
deleted file mode 100644
index cc3af2f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs272.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs272:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs273.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs273.xq
deleted file mode 100644
index 5c54e86b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs273.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs273:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs274.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs274.xq
deleted file mode 100644
index e215e595..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs274.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs274:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs275.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs275.xq
deleted file mode 100644
index 6fa7b694..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs275.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs275:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs276.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs276.xq
deleted file mode 100644
index 0ae1030f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs276.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs276:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:integer(-100) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:integer("-100") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs277.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs277.xq
deleted file mode 100644
index 362da835..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs277.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs277:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs278.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs278.xq
deleted file mode 100644
index 0d6d8484..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs278.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs278:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:string:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs279.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs279.xq
deleted file mode 100644
index 738d09ae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs279.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs279:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:20-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:float:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs280.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs280.xq
deleted file mode 100644
index 8f2b0913..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs280.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs280:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:double:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs281.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs281.xq
deleted file mode 100644
index 2b2e0313..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs281.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs281:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs282.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs282.xq
deleted file mode 100644
index 8685d0b7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs282.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs282:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs283.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs283.xq
deleted file mode 100644
index c5c221b3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs283.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs283:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs284.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs284.xq
deleted file mode 100644
index 12d59b0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs284.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs284:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(PT10H) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:duration("PT10H") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs285.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs285.xq
deleted file mode 100644
index 6495760d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs285.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs285:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs286.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs286.xq
deleted file mode 100644
index 35d74892..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs286.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs286:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(PT10H) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:duration("PT10H") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs287.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs287.xq
deleted file mode 100644
index 77ab7508..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs287.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs287:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P24M) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:duration("P24M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs288.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs288.xq
deleted file mode 100644
index 14fbff6b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs288.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs288:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs289.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs289.xq
deleted file mode 100644
index 68d19a26..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs289.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs289:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(PT10H) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:duration("PT10H") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs290.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs290.xq
deleted file mode 100644
index 35d59781..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs290.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs290:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P24M) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:duration("P24M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs291.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs291.xq
deleted file mode 100644
index 653cf5fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs291.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs291:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs292.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs292.xq
deleted file mode 100644
index 770cec3a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs292.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs292:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:time:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs293.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs293.xq
deleted file mode 100644
index dcbe67df..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs293.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs293:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:date:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs294.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs294.xq
deleted file mode 100644
index 3ef13d20..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs294.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs294:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs295.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs295.xq
deleted file mode 100644
index 8b370064..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs295.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs295:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs296.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs296.xq
deleted file mode 100644
index b090e295..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs296.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs296:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs297.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs297.xq
deleted file mode 100644
index b0b0bf51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs297.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs297:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs298.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs298.xq
deleted file mode 100644
index 2a071231..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs298.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs298:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs299.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs299.xq
deleted file mode 100644
index 3208ffa9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs299.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs299:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs300.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs300.xq
deleted file mode 100644
index 27e440dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs300.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs300:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs301.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs301.xq
deleted file mode 100644
index 9c66785a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs301.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs301:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs302.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs302.xq
deleted file mode 100644
index b2c83e16..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs302.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs302:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:duration(P1Y2M3DT10H30M23S) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:duration("P1Y2M3DT10H30M23S") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs303.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs303.xq
deleted file mode 100644
index 4c3e27c5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs303.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs303:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs304.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs304.xq
deleted file mode 100644
index be49905f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs304.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs304:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:string:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs305.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs305.xq
deleted file mode 100644
index 357933fc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs305.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs305:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:float:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs306.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs306.xq
deleted file mode 100644
index 20c854c2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs306.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs306:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:double:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs307.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs307.xq
deleted file mode 100644
index b9040508..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs307.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs307:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs308.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs308.xq
deleted file mode 100644
index 907ab3e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs308.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs308:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs309.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs309.xq
deleted file mode 100644
index 0237b318..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs309.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs309:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs310.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs310.xq
deleted file mode 100644
index 0347524b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs310.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs310:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs311.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs311.xq
deleted file mode 100644
index ceff9384..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs311.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs311:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(-P21M) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("-P21M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs312.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs312.xq
deleted file mode 100644
index a2e66e03..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs312.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs312:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs313.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs313.xq
deleted file mode 100644
index 663a713a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs313.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs313:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs314.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs314.xq
deleted file mode 100644
index 2b7505fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs314.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs314:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:time:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs315.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs315.xq
deleted file mode 100644
index f484168b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs315.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs315:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:date:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs316.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs316.xq
deleted file mode 100644
index 25a8cab5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs316.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs316:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs317.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs317.xq
deleted file mode 100644
index 3ce1ad26..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs317.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs317:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs318.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs318.xq
deleted file mode 100644
index 1cb5f5f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs318.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs318:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs319.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs319.xq
deleted file mode 100644
index 5d3bf978..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs319.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs319:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs320.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs320.xq
deleted file mode 100644
index 4636a47c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs320.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs320:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs321.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs321.xq
deleted file mode 100644
index b6c6cc14..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs321.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs321:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs322.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs322.xq
deleted file mode 100644
index 336af193..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs322.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs322:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs323.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs323.xq
deleted file mode 100644
index f68162dc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs323.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs323:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs324.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs324.xq
deleted file mode 100644
index a137db91..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs324.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs324:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:yearMonthDuration(P1Y2M) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:yearMonthDuration("P1Y2M") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs325.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs325.xq
deleted file mode 100644
index f02ae013..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs325.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs325:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs326.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs326.xq
deleted file mode 100644
index 68074d59..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs326.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs326:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(-PT100M) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("-PT100M") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs327.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs327.xq
deleted file mode 100644
index 8ec95255..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs327.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs327:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:string:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs328.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs328.xq
deleted file mode 100644
index 7a2f4c53..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs328.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs328:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(-PT100M) castable as xs:string:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("-PT100M") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs329.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs329.xq
deleted file mode 100644
index 715d105a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs329.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs329:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:float:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs330.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs330.xq
deleted file mode 100644
index 9fd86027..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs330.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs330:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:double:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs331.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs331.xq
deleted file mode 100644
index 92209f8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs331.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs331:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs332.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs332.xq
deleted file mode 100644
index ec08f369..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs332.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs332:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs333.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs333.xq
deleted file mode 100644
index 88936987..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs333.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs333:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs334.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs334.xq
deleted file mode 100644
index a533cb65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs334.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs334:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(PT24H) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("PT24H") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs335.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs335.xq
deleted file mode 100644
index 34dde713..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs335.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs335:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(-PT100M) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("-PT100M") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs336.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs336.xq
deleted file mode 100644
index 80d215e8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs336.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs336:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs337.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs337.xq
deleted file mode 100644
index d5258dad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs337.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs337:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs338.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs338.xq
deleted file mode 100644
index 865794d1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs338.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs338:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P14D) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P14D") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs339.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs339.xq
deleted file mode 100644
index a006795c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs339.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs339:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(-PT100M) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("-PT100M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs340.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs340.xq
deleted file mode 100644
index b367abb7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs340.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs340:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs341.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs341.xq
deleted file mode 100644
index 2760c395..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs341.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs341:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:time:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs342.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs342.xq
deleted file mode 100644
index 3b5e3799..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs342.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs342:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:date:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs343.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs343.xq
deleted file mode 100644
index 60eafdb0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs343.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs343:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs344.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs344.xq
deleted file mode 100644
index 67a97992..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs344.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs344:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs345.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs345.xq
deleted file mode 100644
index 5aac0183..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs345.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs345:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs346.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs346.xq
deleted file mode 100644
index 048d00c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs346.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs346:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs347.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs347.xq
deleted file mode 100644
index fa71b18c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs347.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs347:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs348.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs348.xq
deleted file mode 100644
index 89bbdaa6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs348.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs348:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs349.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs349.xq
deleted file mode 100644
index 41f93569..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs349.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs349:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs350.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs350.xq
deleted file mode 100644
index 28aff6e1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs350.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs350:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs351.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs351.xq
deleted file mode 100644
index ece19dd3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs351.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs351:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dayTimeDuration(P3DT10H30M) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:dayTimeDuration("P3DT10H30M") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs352.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs352.xq
deleted file mode 100644
index 151edabe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs352.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs352:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs353.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs353.xq
deleted file mode 100644
index de65d275..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs353.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs353:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dateTime(-1999-05-31T13:20:00+14:00) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:dateTime("-1999-05-31T13:20:00+14:00") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs354.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs354.xq
deleted file mode 100644
index 42dd31f8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs354.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs354:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:string:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs355.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs355.xq
deleted file mode 100644
index b5a2eb09..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs355.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs355:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:21-07:00:)
-(:Purpose:Try xs:dateTime(-1999-05-31T13:20:00+14:00) castable as xs:string:)
-(:*******************************************************:)
-
-xs:dateTime("-1999-05-31T13:20:00+14:00") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs356.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs356.xq
deleted file mode 100644
index 4d11f21c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs356.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs356:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:float:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs357.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs357.xq
deleted file mode 100644
index 6610500a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs357.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs357:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(2000-01-16T00:00:00Z) castable as xs:float:)
-(:*******************************************************:)
-
-xs:dateTime("2000-01-16T00:00:00Z") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs358.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs358.xq
deleted file mode 100644
index a04f67a8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs358.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs358:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs359.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs359.xq
deleted file mode 100644
index 47c13cdb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs359.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs359:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs360.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs360.xq
deleted file mode 100644
index 33b1249f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs360.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs360:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs361.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs361.xq
deleted file mode 100644
index d259a7c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs361.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs361:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs362.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs362.xq
deleted file mode 100644
index 8b256e27..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs362.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs362:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs363.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs363.xq
deleted file mode 100644
index 9a9aab28..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs363.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs363:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs364.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs364.xq
deleted file mode 100644
index eca19dc3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs364.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs364:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:time:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs365.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs365.xq
deleted file mode 100644
index 25f2c871..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs365.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs365:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(-1999-05-31T13:20:00+14:00) castable as xs:time:)
-(:*******************************************************:)
-
-xs:dateTime("-1999-05-31T13:20:00+14:00") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs366.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs366.xq
deleted file mode 100644
index a3807969..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs366.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs366:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:date:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs367.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs367.xq
deleted file mode 100644
index a160b6af..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs367.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs367:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(-1999-05-31T13:20:00+14:00) castable as xs:date:)
-(:*******************************************************:)
-
-xs:dateTime("-1999-05-31T13:20:00+14:00") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs368.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs368.xq
deleted file mode 100644
index 3b18bd8b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs368.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs368:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs369.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs369.xq
deleted file mode 100644
index 34049424..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs369.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs369:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(-1999-05-31T13:20:00+14:00) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:dateTime("-1999-05-31T13:20:00+14:00") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs370.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs370.xq
deleted file mode 100644
index b5b07148..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs370.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs370:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs371.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs371.xq
deleted file mode 100644
index 215838a8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs371.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs371:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(-1999-05-31T13:20:00+14:00) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:dateTime("-1999-05-31T13:20:00+14:00") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs372.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs372.xq
deleted file mode 100644
index ea425f3d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs372.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs372:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs373.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs373.xq
deleted file mode 100644
index 2c979859..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs373.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs373:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(-1999-05-31T13:20:00+14:00) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:dateTime("-1999-05-31T13:20:00+14:00") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs374.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs374.xq
deleted file mode 100644
index 6a755306..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs374.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs374:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs375.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs375.xq
deleted file mode 100644
index 557fe14d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs375.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs375:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(-1999-05-31T13:20:00+14:00) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:dateTime("-1999-05-31T13:20:00+14:00") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs376.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs376.xq
deleted file mode 100644
index 6687e603..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs376.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs376:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs377.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs377.xq
deleted file mode 100644
index cdf5887e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs377.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs377:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(-1999-05-31T13:20:00+14:00) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:dateTime("-1999-05-31T13:20:00+14:00") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs378.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs378.xq
deleted file mode 100644
index 6b1565fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs378.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs378:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs379.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs379.xq
deleted file mode 100644
index f1630f5e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs379.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs379:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs380.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs380.xq
deleted file mode 100644
index 24c3c218..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs380.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs380:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs381.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs381.xq
deleted file mode 100644
index 537bea3b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs381.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs381:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:dateTime(1999-05-31T13:20:00) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:dateTime("1999-05-31T13:20:00") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs382.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs382.xq
deleted file mode 100644
index d225a333..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs382.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs382:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs383.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs383.xq
deleted file mode 100644
index 2dca3e05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs383.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs383:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:string:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs384.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs384.xq
deleted file mode 100644
index 833c1f93..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs384.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs384:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:float:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs385.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs385.xq
deleted file mode 100644
index 96bb0392..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs385.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs385:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:double:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs386.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs386.xq
deleted file mode 100644
index 39b9353f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs386.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs386:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs387.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs387.xq
deleted file mode 100644
index c5e8b713..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs387.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs387:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs388.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs388.xq
deleted file mode 100644
index 1abbb30f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs388.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs388:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs389.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs389.xq
deleted file mode 100644
index 1a4ce968..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs389.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs389:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs390.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs390.xq
deleted file mode 100644
index 759fddeb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs390.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs390:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs391.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs391.xq
deleted file mode 100644
index a8d30d4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs391.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs391:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs392.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs392.xq
deleted file mode 100644
index c9be66ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs392.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs392:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:time:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs393.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs393.xq
deleted file mode 100644
index 175b684d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs393.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs393:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:02.123) castable as xs:time:)
-(:*******************************************************:)
-
-xs:time("13:20:02.123") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs394.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs394.xq
deleted file mode 100644
index eb847eb3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs394.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs394:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00Z) castable as xs:time:)
-(:*******************************************************:)
-
-xs:time("13:20:00Z") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs395.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs395.xq
deleted file mode 100644
index 4d3775c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs395.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs395:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:date:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs396.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs396.xq
deleted file mode 100644
index 28821a34..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs396.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs396:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs397.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs397.xq
deleted file mode 100644
index 32b9a7fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs397.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs397:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs398.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs398.xq
deleted file mode 100644
index 9e0ecd5f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs398.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs398:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs399.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs399.xq
deleted file mode 100644
index 4cad989f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs399.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs399:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs400.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs400.xq
deleted file mode 100644
index 9b240b62..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs400.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs400:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs401.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs401.xq
deleted file mode 100644
index 21d1bf29..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs401.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs401:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs402.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs402.xq
deleted file mode 100644
index 3cdf9338..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs402.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs402:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs403.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs403.xq
deleted file mode 100644
index a369cefe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs403.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs403:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs404.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs404.xq
deleted file mode 100644
index cb2ebd91..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs404.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs404:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:time(13:20:00-05:00) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:time("13:20:00-05:00") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs405.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs405.xq
deleted file mode 100644
index 37b60899..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs405.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs405:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs406.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs406.xq
deleted file mode 100644
index 93726e2b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs406.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs406:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(-0012-12-03-05:00) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:date("-0012-12-03-05:00") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs407.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs407.xq
deleted file mode 100644
index 68e15139..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs407.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs407:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:string:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs408.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs408.xq
deleted file mode 100644
index e91148c8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs408.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs408:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(-0012-12-03-05:00) castable as xs:string:)
-(:*******************************************************:)
-
-xs:date("-0012-12-03-05:00") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs409.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs409.xq
deleted file mode 100644
index 3747cdbf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs409.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs409:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:float:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs410.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs410.xq
deleted file mode 100644
index eedf086b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs410.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs410:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:double:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs411.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs411.xq
deleted file mode 100644
index 57e69936..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs411.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs411:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31Z) castable as xs:double:)
-(:*******************************************************:)
-
-xs:date("1999-05-31Z") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs412.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs412.xq
deleted file mode 100644
index c5ac9f08..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs412.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs412:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs413.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs413.xq
deleted file mode 100644
index 80d4e265..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs413.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs413:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs414.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs414.xq
deleted file mode 100644
index 3947cf2c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs414.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs414:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs415.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs415.xq
deleted file mode 100644
index cc7e0a87..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs415.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs415:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs416.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs416.xq
deleted file mode 100644
index eb565f60..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs416.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs416:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs417.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs417.xq
deleted file mode 100644
index c214d888..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs417.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs417:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:time:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs418.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs418.xq
deleted file mode 100644
index 8045820e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs418.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs418:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:date:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs419.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs419.xq
deleted file mode 100644
index 86c971eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs419.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs419:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(-0012-12-03-05:00) castable as xs:date:)
-(:*******************************************************:)
-
-xs:date("-0012-12-03-05:00") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs420.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs420.xq
deleted file mode 100644
index 4e7ee717..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs420.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs420:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31Z) castable as xs:date:)
-(:*******************************************************:)
-
-xs:date("1999-05-31Z") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs421.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs421.xq
deleted file mode 100644
index 29bc69fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs421.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs421:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs422.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs422.xq
deleted file mode 100644
index d31aedab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs422.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs422:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs423.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs423.xq
deleted file mode 100644
index 55b780e7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs423.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs423:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(-0012-12-03-05:00) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:date("-0012-12-03-05:00") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs424.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs424.xq
deleted file mode 100644
index 255f81ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs424.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs424:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31Z) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:date("1999-05-31Z") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs425.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs425.xq
deleted file mode 100644
index e26996a2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs425.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs425:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs426.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs426.xq
deleted file mode 100644
index afa9ee94..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs426.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs426:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(-0012-12-03-05:00) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:date("-0012-12-03-05:00") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs427.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs427.xq
deleted file mode 100644
index c3359e3b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs427.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs427:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31Z) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:date("1999-05-31Z") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs428.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs428.xq
deleted file mode 100644
index 8e477ae3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs428.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs428:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31Z) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:date("1999-05-31Z") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs429.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs429.xq
deleted file mode 100644
index e1662a3b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs429.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs429:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(-0012-12-03-05:00) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:date("-0012-12-03-05:00") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs430.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs430.xq
deleted file mode 100644
index 46bc3425..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs430.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs430:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31Z) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:date("1999-05-31Z") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs431.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs431.xq
deleted file mode 100644
index aa1595c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs431.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs431:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:22-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs432.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs432.xq
deleted file mode 100644
index 3ca38d83..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs432.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs432:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs433.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs433.xq
deleted file mode 100644
index fe5d8221..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs433.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs433:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs434.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs434.xq
deleted file mode 100644
index 8daf28bb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs434.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs434:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:date(1999-05-31) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:date("1999-05-31") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs435.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs435.xq
deleted file mode 100644
index 43c8d6e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs435.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs435:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs436.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs436.xq
deleted file mode 100644
index b2409fb1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs436.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs436:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05) castable as xs:string:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs437.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs437.xq
deleted file mode 100644
index 2495bfe3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs437.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs437:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05) castable as xs:float:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs438.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs438.xq
deleted file mode 100644
index 65e7e404..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs438.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs438:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05) castable as xs:double:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs439.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs439.xq
deleted file mode 100644
index 0ae49e90..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs439.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs439:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:double:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs440.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs440.xq
deleted file mode 100644
index 5b3f2c8d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs440.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs440:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs441.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs441.xq
deleted file mode 100644
index 1e8a8562..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs441.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs441:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs442.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs442.xq
deleted file mode 100644
index b2735156..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs442.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs442:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs443.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs443.xq
deleted file mode 100644
index 33670443..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs443.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs443:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs444.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs444.xq
deleted file mode 100644
index 17d0cb4d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs444.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs444:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs445.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs445.xq
deleted file mode 100644
index 21a1f468..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs445.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs445:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs446.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs446.xq
deleted file mode 100644
index bbf23345..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs446.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs446:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:time:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs447.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs447.xq
deleted file mode 100644
index a080e221..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs447.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs447:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:date:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs448.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs448.xq
deleted file mode 100644
index 8539e636..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs448.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs448:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs449.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs449.xq
deleted file mode 100644
index d54393d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs449.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs449:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(-0012-12-05:00) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:gYearMonth("-0012-12-05:00") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs450.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs450.xq
deleted file mode 100644
index 849f6e0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs450.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs450:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs451.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs451.xq
deleted file mode 100644
index 8c6dd003..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs451.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs451:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs452.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs452.xq
deleted file mode 100644
index 23c885fa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs452.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs452:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs453.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs453.xq
deleted file mode 100644
index a4b57c80..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs453.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs453:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs454.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs454.xq
deleted file mode 100644
index fc9d5971..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs454.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs454:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs455.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs455.xq
deleted file mode 100644
index 6a6a9be4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs455.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs455:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs456.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs456.xq
deleted file mode 100644
index 09c1efc6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs456.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs456:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs457.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs457.xq
deleted file mode 100644
index a097c7a2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs457.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs457:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs458.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs458.xq
deleted file mode 100644
index 4122db94..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs458.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs458:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYearMonth(1999-05Z) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:gYearMonth("1999-05Z") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs459.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs459.xq
deleted file mode 100644
index 015294bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs459.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs459:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs460.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs460.xq
deleted file mode 100644
index da73cb06..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs460.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs460:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:string:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs461.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs461.xq
deleted file mode 100644
index 9e9e18f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs461.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs461:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:float:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs462.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs462.xq
deleted file mode 100644
index 5d3f9677..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs462.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs462:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:double:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs463.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs463.xq
deleted file mode 100644
index 1d129c93..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs463.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs463:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs464.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs464.xq
deleted file mode 100644
index 8938c6ea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs464.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs464:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs465.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs465.xq
deleted file mode 100644
index 5a1a2cae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs465.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs465:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs466.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs466.xq
deleted file mode 100644
index 67e38d1b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs466.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs466:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs467.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs467.xq
deleted file mode 100644
index ae92559e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs467.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs467:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs468.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs468.xq
deleted file mode 100644
index cf755a59..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs468.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs468:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:time:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs469.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs469.xq
deleted file mode 100644
index 3bea2a02..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs469.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs469:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:date:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs470.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs470.xq
deleted file mode 100644
index de70402c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs470.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs470:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs471.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs471.xq
deleted file mode 100644
index 79eff636..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs471.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs471:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs472.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs472.xq
deleted file mode 100644
index 7ac42c36..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs472.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs472:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(-0012-05:00) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:gYear("-0012-05:00") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs473.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs473.xq
deleted file mode 100644
index 96d10216..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs473.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs473:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999Z) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:gYear("1999Z") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs474.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs474.xq
deleted file mode 100644
index 4824bfe4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs474.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs474:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs475.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs475.xq
deleted file mode 100644
index 567e0a9c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs475.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs475:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs476.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs476.xq
deleted file mode 100644
index c2025ad9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs476.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs476:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs477.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs477.xq
deleted file mode 100644
index 8b437929..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs477.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs477:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs478.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs478.xq
deleted file mode 100644
index b5421eea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs478.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs478:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs479.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs479.xq
deleted file mode 100644
index 54811956..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs479.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs479:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs480.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs480.xq
deleted file mode 100644
index a50b7936..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs480.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs480:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gYear(1999) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:gYear("1999") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs481.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs481.xq
deleted file mode 100644
index 1c98cf56..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs481.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs481:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs482.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs482.xq
deleted file mode 100644
index ff2f4f73..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs482.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs482:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:string:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs483.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs483.xq
deleted file mode 100644
index 66ad9a87..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs483.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs483:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:float:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs484.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs484.xq
deleted file mode 100644
index 73aa3f43..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs484.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs484:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:double:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs485.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs485.xq
deleted file mode 100644
index 229f5ded..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs485.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs485:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs486.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs486.xq
deleted file mode 100644
index c843ec06..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs486.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs486:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs487.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs487.xq
deleted file mode 100644
index 2533f367..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs487.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs487:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs488.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs488.xq
deleted file mode 100644
index 6b75d3d6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs488.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs488:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs489.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs489.xq
deleted file mode 100644
index 2871f476..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs489.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs489:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs490.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs490.xq
deleted file mode 100644
index 19d9ae3b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs490.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs490:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs491.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs491.xq
deleted file mode 100644
index caca263b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs491.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs491:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:time:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs492.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs492.xq
deleted file mode 100644
index e014155b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs492.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs492:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:date:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs493.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs493.xq
deleted file mode 100644
index 9c592d9b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs493.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs493:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs494.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs494.xq
deleted file mode 100644
index bcf1657a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs494.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs494:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs495.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs495.xq
deleted file mode 100644
index fd87e254..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs495.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs495:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs496.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs496.xq
deleted file mode 100644
index 759cec64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs496.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs496:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--12-03-05:00) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:gMonthDay("--12-03-05:00") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs497.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs497.xq
deleted file mode 100644
index c19054a1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs497.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs497:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31Z) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31Z") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs498.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs498.xq
deleted file mode 100644
index 5f6a30df..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs498.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs498:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs499.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs499.xq
deleted file mode 100644
index c8f41716..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs499.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs499:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs500.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs500.xq
deleted file mode 100644
index 04002a41..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs500.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs500:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs501.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs501.xq
deleted file mode 100644
index 00f5768e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs501.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs501:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs502.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs502.xq
deleted file mode 100644
index 0d0b0ef9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs502.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs502:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs503.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs503.xq
deleted file mode 100644
index 7ba69abc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs503.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs503:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonthDay(--05-31) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:gMonthDay("--05-31") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs504.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs504.xq
deleted file mode 100644
index fa4da893..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs504.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs504:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs505.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs505.xq
deleted file mode 100644
index 3cabf933..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs505.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs505:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:string:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs506.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs506.xq
deleted file mode 100644
index db894048..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs506.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs506:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:float:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs507.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs507.xq
deleted file mode 100644
index 4dbe8f0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs507.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs507:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:double:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs508.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs508.xq
deleted file mode 100644
index c3c11b19..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs508.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs508:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs509.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs509.xq
deleted file mode 100644
index 5f3da362..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs509.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs509:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs510.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs510.xq
deleted file mode 100644
index 4bd05bc9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs510.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs510:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs511.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs511.xq
deleted file mode 100644
index 495a7d8d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs511.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs511:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs512.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs512.xq
deleted file mode 100644
index 9095aff3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs512.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs512:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs513.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs513.xq
deleted file mode 100644
index b4615dc0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs513.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs513:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs514.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs514.xq
deleted file mode 100644
index 9c28f132..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs514.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs514:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:time:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs515.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs515.xq
deleted file mode 100644
index 4e57fe0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs515.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs515:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:date:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs516.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs516.xq
deleted file mode 100644
index 3cb75de6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs516.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs516:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs517.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs517.xq
deleted file mode 100644
index fedf5475..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs517.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs517:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs518.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs518.xq
deleted file mode 100644
index fc344854..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs518.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs518:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs519.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs519.xq
deleted file mode 100644
index 49a64c0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs519.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs519:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs520.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs520.xq
deleted file mode 100644
index aa9700dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs520.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs520:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---03-05:00) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:gDay("---03-05:00") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs521.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs521.xq
deleted file mode 100644
index 3c0dcd48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs521.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs521:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31Z) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:gDay("---31Z") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs522.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs522.xq
deleted file mode 100644
index 2c3651e2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs522.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs522:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs523.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs523.xq
deleted file mode 100644
index 580c5da9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs523.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs523:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs524.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs524.xq
deleted file mode 100644
index 09d03a98..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs524.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs524:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs525.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs525.xq
deleted file mode 100644
index 38f0a85c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs525.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs525:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs526.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs526.xq
deleted file mode 100644
index 9602d274..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs526.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs526:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gDay(---31) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:gDay("---31") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs527.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs527.xq
deleted file mode 100644
index cea68cc6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs527.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs527:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs528.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs528.xq
deleted file mode 100644
index efb07807..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs528.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs528:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:string:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs529.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs529.xq
deleted file mode 100644
index 57594065..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs529.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs529:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:float:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs530.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs530.xq
deleted file mode 100644
index bf07952b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs530.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs530:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:double:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs531.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs531.xq
deleted file mode 100644
index 6cd5dded..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs531.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs531:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs532.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs532.xq
deleted file mode 100644
index 7a09a01d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs532.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs532:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs533.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs533.xq
deleted file mode 100644
index 5c898d8b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs533.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs533:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs534.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs534.xq
deleted file mode 100644
index e02d6f8d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs534.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs534:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs535.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs535.xq
deleted file mode 100644
index 5a338d65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs535.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs535:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs536.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs536.xq
deleted file mode 100644
index 855cf856..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs536.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs536:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs537.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs537.xq
deleted file mode 100644
index d31b0a9e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs537.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs537:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:time:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs538.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs538.xq
deleted file mode 100644
index 06ebce9f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs538.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs538:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:date:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs539.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs539.xq
deleted file mode 100644
index f727ae61..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs539.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs539:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs540.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs540.xq
deleted file mode 100644
index 3bc4659f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs540.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs540:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs541.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs541.xq
deleted file mode 100644
index 82eed932..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs541.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs541:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs542.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs542.xq
deleted file mode 100644
index 35533364..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs542.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs542:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs543.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs543.xq
deleted file mode 100644
index b2f8d405..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs543.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs543:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs544.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs544.xq
deleted file mode 100644
index 0d791f14..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs544.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs544:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--12-05:00) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:gMonth("--12-05:00") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs545.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs545.xq
deleted file mode 100644
index 1db77da5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs545.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs545:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05Z) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:gMonth("--05Z") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs546.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs546.xq
deleted file mode 100644
index e6827d81..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs546.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs546:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs547.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs547.xq
deleted file mode 100644
index 64617821..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs547.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs547:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs548.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs548.xq
deleted file mode 100644
index 7813d326..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs548.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs548:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs549.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs549.xq
deleted file mode 100644
index 3874b83b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs549.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs549:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:gMonth(--05) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:gMonth("--05") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs550.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs550.xq
deleted file mode 100644
index d7b0de2c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs550.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs550:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs551.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs551.xq
deleted file mode 100644
index c6495626..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs551.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs551:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:string:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs552.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs552.xq
deleted file mode 100644
index cc397b8e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs552.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs552:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:float:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs553.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs553.xq
deleted file mode 100644
index 7f93dcaf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs553.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs553:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(false) castable as xs:float:)
-(:*******************************************************:)
-
-xs:boolean("false") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs554.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs554.xq
deleted file mode 100644
index bf0c94a4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs554.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs554:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:double:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs555.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs555.xq
deleted file mode 100644
index 6bc8bf92..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs555.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs555:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(false) castable as xs:double:)
-(:*******************************************************:)
-
-xs:boolean("false") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs556.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs556.xq
deleted file mode 100644
index 3352f4b6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs556.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs556:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs557.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs557.xq
deleted file mode 100644
index 20d656ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs557.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs557:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(false) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:boolean("false") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs558.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs558.xq
deleted file mode 100644
index ab6eadb2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs558.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs558:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs559.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs559.xq
deleted file mode 100644
index d4a7fc39..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs559.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs559:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:23-07:00:)
-(:Purpose:Try xs:boolean(false) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:boolean("false") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs560.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs560.xq
deleted file mode 100644
index 5a92a0eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs560.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs560:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs561.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs561.xq
deleted file mode 100644
index 0e456097..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs561.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs561:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs562.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs562.xq
deleted file mode 100644
index d81da2d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs562.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs562:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs563.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs563.xq
deleted file mode 100644
index 8e83c2fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs563.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs563:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs564.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs564.xq
deleted file mode 100644
index 89264a81..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs564.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs564:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:time:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs565.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs565.xq
deleted file mode 100644
index 610bb157..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs565.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs565:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:date:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs566.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs566.xq
deleted file mode 100644
index bae9c708..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs566.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs566:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs567.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs567.xq
deleted file mode 100644
index 7c71be6d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs567.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs567:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs568.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs568.xq
deleted file mode 100644
index 48dcba2e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs568.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs568:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs569.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs569.xq
deleted file mode 100644
index 59b55f2c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs569.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs569:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs570.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs570.xq
deleted file mode 100644
index f86be455..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs570.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs570:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs571.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs571.xq
deleted file mode 100644
index 5066c014..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs571.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs571:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs572.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs572.xq
deleted file mode 100644
index d63c22fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs572.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs572:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(false) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:boolean("false") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs573.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs573.xq
deleted file mode 100644
index c3dcf80a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs573.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs573:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs574.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs574.xq
deleted file mode 100644
index eb2c684f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs574.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs574:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs575.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs575.xq
deleted file mode 100644
index 4b9e6afc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs575.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs575:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:boolean(true) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:boolean("true") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs576.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs576.xq
deleted file mode 100644
index 569d7e09..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs576.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs576:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(01001010) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:base64Binary("01001010") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs577.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs577.xq
deleted file mode 100644
index 2559c8f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs577.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs577:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(0FB7) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:base64Binary("0FB7") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs578.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs578.xq
deleted file mode 100644
index 868e1b17..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs578.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs578:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(01001010) castable as xs:string:)
-(:*******************************************************:)
-
-xs:base64Binary("01001010") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs579.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs579.xq
deleted file mode 100644
index 5aa10c34..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs579.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs579:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(0FB7) castable as xs:string:)
-(:*******************************************************:)
-
-xs:base64Binary("0FB7") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs580.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs580.xq
deleted file mode 100644
index bfe316d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs580.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs580:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:float:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs581.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs581.xq
deleted file mode 100644
index 74880ad0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs581.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs581:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:double:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs582.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs582.xq
deleted file mode 100644
index 5ab0ac24..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs582.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs582:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs583.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs583.xq
deleted file mode 100644
index 2a94cfb7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs583.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs583:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs584.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs584.xq
deleted file mode 100644
index bcf104ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs584.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs584:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs585.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs585.xq
deleted file mode 100644
index 0d2f52e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs585.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs585:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs586.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs586.xq
deleted file mode 100644
index d51929ae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs586.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs586:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs587.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs587.xq
deleted file mode 100644
index 76ecc600..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs587.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs587:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs588.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs588.xq
deleted file mode 100644
index 635c9629..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs588.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs588:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:time:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs589.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs589.xq
deleted file mode 100644
index 61d30e49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs589.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs589:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:date:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs590.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs590.xq
deleted file mode 100644
index b3fc06f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs590.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs590:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs591.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs591.xq
deleted file mode 100644
index b2735025..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs591.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs591:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs592.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs592.xq
deleted file mode 100644
index 3ae19a28..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs592.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs592:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs593.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs593.xq
deleted file mode 100644
index 10b3dcfd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs593.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs593:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs594.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs594.xq
deleted file mode 100644
index e1e83861..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs594.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs594:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs595.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs595.xq
deleted file mode 100644
index 3fa3eb95..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs595.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs595:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs596.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs596.xq
deleted file mode 100644
index 59bffec6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs596.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs596:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(01001010) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:base64Binary("01001010") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs597.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs597.xq
deleted file mode 100644
index 775f1090..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs597.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs597:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(0FB7) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:base64Binary("0FB7") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs598.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs598.xq
deleted file mode 100644
index 9ebeb69c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs598.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs598:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(00000000) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:base64Binary("00000000") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs599.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs599.xq
deleted file mode 100644
index ae4fedf4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs599.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs599:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs600.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs600.xq
deleted file mode 100644
index d1940e68..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs600.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs600:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(aA+zZ/09) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:base64Binary("aA+zZ/09") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs601.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs601.xq
deleted file mode 100644
index 6ae6d052..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs601.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs601:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(0FB7) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:base64Binary("0FB7") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs602.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs602.xq
deleted file mode 100644
index 5afb0e1a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs602.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs602:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:base64Binary(10010101) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:base64Binary("10010101") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs603.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs603.xq
deleted file mode 100644
index 6318775c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs603.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs603:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs604.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs604.xq
deleted file mode 100644
index 1c72c071..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs604.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs604:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:string:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs605.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs605.xq
deleted file mode 100644
index b7a8e6e2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs605.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs605:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:float:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs606.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs606.xq
deleted file mode 100644
index 2fd39e4b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs606.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs606:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:double:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs607.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs607.xq
deleted file mode 100644
index a316e3ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs607.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs607:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs608.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs608.xq
deleted file mode 100644
index edfeaf3f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs608.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs608:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs609.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs609.xq
deleted file mode 100644
index da3e2449..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs609.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs609:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs610.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs610.xq
deleted file mode 100644
index af51f4cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs610.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs610:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs611.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs611.xq
deleted file mode 100644
index dde2e4d6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs611.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs611:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs612.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs612.xq
deleted file mode 100644
index 652e6b03..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs612.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs612:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs613.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs613.xq
deleted file mode 100644
index 3687b7be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs613.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs613:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:time:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs614.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs614.xq
deleted file mode 100644
index b3d2219a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs614.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs614:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:date:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs615.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs615.xq
deleted file mode 100644
index df5bf600..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs615.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs615:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs616.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs616.xq
deleted file mode 100644
index 31fd9418..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs616.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs616:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs617.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs617.xq
deleted file mode 100644
index f5e5c407..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs617.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs617:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs618.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs618.xq
deleted file mode 100644
index 3b72a11a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs618.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs618:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs619.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs619.xq
deleted file mode 100644
index 6dc2e587..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs619.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs619:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs620.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs620.xq
deleted file mode 100644
index 9df1d695..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs620.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs620:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs621.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs621.xq
deleted file mode 100644
index 14c8071a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs621.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs621:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs622.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs622.xq
deleted file mode 100644
index 04d9f156..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs622.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs622:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(0fb7) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:hexBinary("0fb7") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs623.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs623.xq
deleted file mode 100644
index 378f7734..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs623.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs623:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs624.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs624.xq
deleted file mode 100644
index 5dfbffdd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs624.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs624:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(d74d35d35d35) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:hexBinary("d74d35d35d35") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs625.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs625.xq
deleted file mode 100644
index 3a1f02fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs625.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs625:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:hexBinary(D74D35D35D35) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:hexBinary("D74D35D35D35") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs626.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs626.xq
deleted file mode 100644
index c0c1fe88..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs626.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs626:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:untypedAtomic:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs627.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs627.xq
deleted file mode 100644
index 80c751e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs627.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs627:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:string:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs628.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs628.xq
deleted file mode 100644
index d091d3eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs628.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs628:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:float:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs629.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs629.xq
deleted file mode 100644
index 13acaeae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs629.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs629:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:double:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs630.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs630.xq
deleted file mode 100644
index eb9d1d0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs630.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs630:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:decimal:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs631.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs631.xq
deleted file mode 100644
index fc383a21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs631.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs631:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:integer:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs632.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs632.xq
deleted file mode 100644
index 91d7771b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs632.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs632:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:duration:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs633.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs633.xq
deleted file mode 100644
index 3d9972be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs633.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs633:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:yearMonthDuration:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs634.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs634.xq
deleted file mode 100644
index e77c0c41..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs634.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs634:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:dayTimeDuration:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs635.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs635.xq
deleted file mode 100644
index aacd9794..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs635.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs635:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:dateTime:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs636.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs636.xq
deleted file mode 100644
index eecf07c5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs636.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs636:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:time:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs637.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs637.xq
deleted file mode 100644
index fa29f7d6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs637.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs637:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:date:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs638.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs638.xq
deleted file mode 100644
index ad5b1ad3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs638.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs638:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:gYearMonth:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs639.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs639.xq
deleted file mode 100644
index 0fd2d1cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs639.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs639:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:gYear:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs640.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs640.xq
deleted file mode 100644
index 8b6ecf72..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs640.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs640:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:gMonthDay:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs641.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs641.xq
deleted file mode 100644
index 4522b0f1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs641.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs641:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:gDay:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs642.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs642.xq
deleted file mode 100644
index 50ea5cdc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs642.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs642:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:gMonth:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs643.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs643.xq
deleted file mode 100644
index 044f3c0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs643.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs643:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:boolean:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs644.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs644.xq
deleted file mode 100644
index aa03f963..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs644.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs644:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:base64Binary:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs645.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs645.xq
deleted file mode 100644
index 3cfd9996..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs645.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs645:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:hexBinary:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs646.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs646.xq
deleted file mode 100644
index 490f23cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs646.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs646:)
-(:Written By:Joanne Tong:)
-(:Date:2005-07-21T09:50:24-07:00:)
-(:Purpose:Try xs:anyURI(http://www.ietf.org/rfc/rfc2396.txt) castable as xs:anyURI:)
-(:*******************************************************:)
-
-xs:anyURI("http://www.ietf.org/rfc/rfc2396.txt") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs647.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs647.xq
deleted file mode 100644
index 1852714a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs647.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs647:)
-(:Written By:Carmelo Montanez:)
-(:Date:2006-06-08:)
-(:Purpose:Try string literal castable as xs:QName:)
-(:*******************************************************:)
-
-"ABC" castable as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs648.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs648.xq
deleted file mode 100644
index 84f9be4d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprCastable/CastableAs648.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test:CastableAs648:)
-(:Written By:Carmelo Montanez:)
-(:Date:2006-08-08:)
-(:Purpose:Try variable castable as xs:QName:)
-(:*******************************************************:)
-
-let $var := "ABC"
-return $var castable as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof1.xq
deleted file mode 100644
index a72645fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof1.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof1 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof10.xq
deleted file mode 100644
index 3b1ed90d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof10.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof10 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof100.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof100.xq
deleted file mode 100644
index 717eecd8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof100.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof100 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof101.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof101.xq
deleted file mode 100644
index 884f70b4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof101.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof101 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof102.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof102.xq
deleted file mode 100644
index d966e1a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof102.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof102 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof103.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof103.xq
deleted file mode 100644
index 6b8f74fc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof103.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof103 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof104.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof104.xq
deleted file mode 100644
index 4a8e7a2d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof104.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof104 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof105.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof105.xq
deleted file mode 100644
index 650211cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof105.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof105 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof106.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof106.xq
deleted file mode 100644
index 37938ba9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof106.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof106 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof107.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof107.xq
deleted file mode 100644
index e227fe67..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof107.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof107 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof108.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof108.xq
deleted file mode 100644
index 1e6e7d2a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof108.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof108 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof109.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof109.xq
deleted file mode 100644
index d7ca82c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof109.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof109 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof11.xq
deleted file mode 100644
index d7d4cb20..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof11.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof11 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof110.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof110.xq
deleted file mode 100644
index 81ba0b00..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof110.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof110 :)
-(: purpose: Evaluation of "instance of" expression for pattern "integer instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967543233 instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof12.xq
deleted file mode 100644
index 37f0675b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof12.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof12 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof13.xq
deleted file mode 100644
index fb3e0c8f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof13.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof13 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof14.xq
deleted file mode 100644
index 8f735363..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof14.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof14 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof15.xq
deleted file mode 100644
index 797a1732..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof15.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof15 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof16.xq
deleted file mode 100644
index a6987857..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof16.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof16 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof17.xq
deleted file mode 100644
index a8cc12f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof17.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof17 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof18.xq
deleted file mode 100644
index f8b36c7d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof18.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof18 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof19.xq
deleted file mode 100644
index fda60d71..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof19.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof19 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof2.xq
deleted file mode 100644
index ee356c07..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof2.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof2 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof20.xq
deleted file mode 100644
index 1062167a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof20.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof20 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof21.xq
deleted file mode 100644
index f56c264f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof21.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof21 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof22.xq
deleted file mode 100644
index b047dc89..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof22.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof22 :)
-(: purpose: Evaluation of "instance of" expression for pattern "time instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:time("13:20:10.5Z") instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof23.xq
deleted file mode 100644
index b8ec64ef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof23.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof23 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof24.xq
deleted file mode 100644
index c9353f47..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof24.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof24 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof25.xq
deleted file mode 100644
index 2320c5b5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof25.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof25 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof26.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof26.xq
deleted file mode 100644
index 00463c05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof26.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof26 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof27.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof27.xq
deleted file mode 100644
index 1de9fca8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof27.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof27 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof28.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof28.xq
deleted file mode 100644
index 8c6938f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof28.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof28 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof29.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof29.xq
deleted file mode 100644
index c05e6810..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof29.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof29 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof3.xq
deleted file mode 100644
index 637e1443..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof3.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof3 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof30.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof30.xq
deleted file mode 100644
index 05708294..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof30.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof30 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof31.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof31.xq
deleted file mode 100644
index 27dcb166..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof31.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof31 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof32.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof32.xq
deleted file mode 100644
index ce57c34b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof32.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof32 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof33.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof33.xq
deleted file mode 100644
index 9b7597bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof33.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof33 :)
-(: purpose: Evaluation of "instance of" expression for pattern "date instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:date("2000-01-01+05:00") instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof34.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof34.xq
deleted file mode 100644
index 7adef112..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof34.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof34 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof35.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof35.xq
deleted file mode 100644
index 2930a6ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof35.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof35 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof36.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof36.xq
deleted file mode 100644
index 75c31ef2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof36.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof36 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof37.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof37.xq
deleted file mode 100644
index 38af22c7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof37.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof37 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof38.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof38.xq
deleted file mode 100644
index 883db2aa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof38.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof38 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof39.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof39.xq
deleted file mode 100644
index 0be05944..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof39.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof39 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof4.xq
deleted file mode 100644
index ee1aa1cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof4.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof4 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof40.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof40.xq
deleted file mode 100644
index d22fa603..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof40.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof40 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof41.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof41.xq
deleted file mode 100644
index 407d20eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof41.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof41 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof42.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof42.xq
deleted file mode 100644
index eeb0e07f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof42.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof42 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof43.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof43.xq
deleted file mode 100644
index af2a49bc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof43.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof43 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof44.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof44.xq
deleted file mode 100644
index 960633fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof44.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof44 :)
-(: purpose: Evaluation of "instance of" expression for pattern "boolean instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:boolean("true") instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof45.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof45.xq
deleted file mode 100644
index 28f3051f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof45.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof45 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof46.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof46.xq
deleted file mode 100644
index 61f4ada8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof46.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof46 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof47.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof47.xq
deleted file mode 100644
index f4924db1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof47.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof47 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof48.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof48.xq
deleted file mode 100644
index b56b1e08..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof48.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof48 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof49.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof49.xq
deleted file mode 100644
index b8f0d321..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof49.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof49 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof5.xq
deleted file mode 100644
index 1b7c5cf9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof5.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof5 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof50.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof50.xq
deleted file mode 100644
index 90a9b665..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof50.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof50 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof51.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof51.xq
deleted file mode 100644
index e1735209..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof51.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof51 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof52.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof52.xq
deleted file mode 100644
index 8f7bdbbc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof52.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof52 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof53.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof53.xq
deleted file mode 100644
index 05959af2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof53.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof53 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof54.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof54.xq
deleted file mode 100644
index a87b634c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof54.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof54 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof55.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof55.xq
deleted file mode 100644
index 66aa3927..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof55.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof55 :)
-(: purpose: Evaluation of "instance of" expression for pattern "float instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof56.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof56.xq
deleted file mode 100644
index 93dc4551..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof56.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof56 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof57.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof57.xq
deleted file mode 100644
index ca5c0415..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof57.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof57 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof58.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof58.xq
deleted file mode 100644
index 07f61eeb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof58.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof58 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof59.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof59.xq
deleted file mode 100644
index c178ef66..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof59.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof59 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof6.xq
deleted file mode 100644
index 795c566c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof6.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof6 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof60.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof60.xq
deleted file mode 100644
index bf97ebf4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof60.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof60 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof61.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof61.xq
deleted file mode 100644
index 79dc6ad6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof61.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof61 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof62.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof62.xq
deleted file mode 100644
index 2ac20350..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof62.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof62 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof63.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof63.xq
deleted file mode 100644
index f6fae22c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof63.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof63 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof64.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof64.xq
deleted file mode 100644
index 41ead052..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof64.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof64 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof65.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof65.xq
deleted file mode 100644
index f4fc02f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof65.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof65 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof66.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof66.xq
deleted file mode 100644
index 1b8f8e65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof66.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof66 :)
-(: purpose: Evaluation of "instance of" expression for pattern "double instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-1267.43233E12 instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof67.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof67.xq
deleted file mode 100644
index 5e812f9d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof67.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof67 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof68.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof68.xq
deleted file mode 100644
index 93a51238..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof68.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof68 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof69.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof69.xq
deleted file mode 100644
index 17fd6534..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof69.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof69 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof7.xq
deleted file mode 100644
index 8ee44ecc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof7.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof7 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof70.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof70.xq
deleted file mode 100644
index d3499461..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof70.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof70 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof71.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof71.xq
deleted file mode 100644
index 15a19eb3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof71.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof71 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof72.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof72.xq
deleted file mode 100644
index 973194cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof72.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof72 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof73.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof73.xq
deleted file mode 100644
index 85f3cea3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof73.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof73 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof74.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof74.xq
deleted file mode 100644
index e160bf13..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof74.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof74 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof75.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof75.xq
deleted file mode 100644
index 038dafd5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof75.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof75 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof76.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof76.xq
deleted file mode 100644
index 064b8db1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof76.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof76 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof77.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof77.xq
deleted file mode 100644
index d7facdc0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof77.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof77 :)
-(: purpose: Evaluation of "instance of" expression for pattern "anyURI instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:anyURI("http://www.example.com") instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof78.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof78.xq
deleted file mode 100644
index 9fa8f62b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof78.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof78 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof79.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof79.xq
deleted file mode 100644
index a224bcaf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof79.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof79 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof8.xq
deleted file mode 100644
index 4c83ddc4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof8.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof8 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof80.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof80.xq
deleted file mode 100644
index 9318c5e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof80.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof80 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof81.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof81.xq
deleted file mode 100644
index 7ffcfbdf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof81.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof81 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof82.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof82.xq
deleted file mode 100644
index 0bd32e22..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof82.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof82 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof83.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof83.xq
deleted file mode 100644
index 331bd877..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof83.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof83 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof84.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof84.xq
deleted file mode 100644
index 959e4974..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof84.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof84 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof85.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof85.xq
deleted file mode 100644
index 7318b39f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof85.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof85 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof86.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof86.xq
deleted file mode 100644
index ccc80be0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof86.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof86 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof87.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof87.xq
deleted file mode 100644
index b5799be8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof87.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof87 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof88.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof88.xq
deleted file mode 100644
index c071ce3f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof88.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof88 :)
-(: purpose: Evaluation of "instance of" expression for pattern "string instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-"A String Function" instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof89.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof89.xq
deleted file mode 100644
index 5a4b613c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof89.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof89 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:dateTime".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:dateTime
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof9.xq
deleted file mode 100644
index 4a09839a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof9.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof9 :)
-(: purpose: Evaluation of "instance of" expression for pattern "dateTime instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-xs:dateTime("2002-04-02T12:00:00Z") instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof90.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof90.xq
deleted file mode 100644
index ced20ae9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof90.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof90 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:time".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:time
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof91.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof91.xq
deleted file mode 100644
index a40678ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof91.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof91 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:date".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:date
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof92.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof92.xq
deleted file mode 100644
index 0d3cb74f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof92.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof92 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:boolean".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:boolean
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof93.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof93.xq
deleted file mode 100644
index b998e423..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof93.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof93 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:float".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:float
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof94.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof94.xq
deleted file mode 100644
index e1107fb2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof94.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof94 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:double".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:double
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof95.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof95.xq
deleted file mode 100644
index 60281aaf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof95.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof95 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:anyURI".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:anyURI
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof96.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof96.xq
deleted file mode 100644
index 0ff59ef6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof96.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof96 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:string".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:string
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof97.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof97.xq
deleted file mode 100644
index ff6d4ae1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof97.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof97 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:decimal".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:decimal
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof98.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof98.xq
deleted file mode 100644
index 2a748ec5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof98.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof98 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:integer".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:integer
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof99.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof99.xq
deleted file mode 100644
index e3b14714..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprInstanceOf/instanceof99.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: instanceof99 :)
-(: purpose: Evaluation of "instance of" expression for pattern "decimal instance of xs:int".:)
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-12678967.543233 instance of xs:int
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-1.xq
deleted file mode 100644
index 0e864fd6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-1 :)
-(: Description: Evaluation of treat as expression where the dynamic type does not match expected type. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := (100+200) div 2
-return
-fn:concat($var treat as xs:string,"a string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-10.xq
deleted file mode 100644
index 7e17c47b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-10.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-10 :)
-(: Description: Evaluation of treat as expression where involving an xs:dateTime data type and fn:minutes-from-dateTime function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:dateTime("1999-05-31T13:20:00-05:00")
-return
-fn:minutes-from-dateTime($var treat as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-11.xq
deleted file mode 100644
index f3f2b618..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-11.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-11 :)
-(: Description: Evaluation of treat as expression where involving an xs:time data type and fn:hours-from-time function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:time("01:23:00+05:00")
-return
-fn:hours-from-time($var treat as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-12.xq
deleted file mode 100644
index f774e90f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-12.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-12 :)
-(: Description: Evaluation of treat as expression where involving an xs:integer data type and a homogeneous sequence.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := 100
-return
-($var treat as xs:integer, $var treat as xs:integer, $var treat as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-13.xq
deleted file mode 100644
index b033bee1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-13.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-13 :)
-(: Description: Evaluation of treat as expression where involving an xs:integer data type and a heterogeneous sequence.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := 100
-return
-(xs:decimal($var) treat as xs:decimal, xs:double($var) treat as xs:double, xs:float($var) treat as xs:float, $var treat as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-14.xq
deleted file mode 100644
index d29c96f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-14.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-14 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and integer/float data types.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := -100
-return
-fn:abs($var cast as xs:float treat as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-15.xq
deleted file mode 100644
index d3e12527..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-15.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-15 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and integer/double data types.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := -100
-return
-fn:abs($var cast as xs:double treat as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-16.xq
deleted file mode 100644
index d6873c03..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-16.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-16 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and float/integer data types.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:float(-100)
-return
-fn:abs($var cast as xs:integer treat as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-17.xq
deleted file mode 100644
index ebe922bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-17.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-17 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and double/integer data types.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:double(-100)
-return
-fn:abs($var cast as xs:integer treat as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-18.xq
deleted file mode 100644
index 6d79e2f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-18.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-18 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and double/float data types.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:double(-100)
-return
-fn:abs($var cast as xs:float treat as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-19.xq
deleted file mode 100644
index eff069da..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-19.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-19 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and float/double data types.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:float(-100)
-return
-fn:abs($var cast as xs:double treat as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-2.xq
deleted file mode 100644
index 08e009fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-2 :)
-(: Description: Evaluation of treat as expression where involving a string data type. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := "String 1"
-return
-fn:concat($var treat as xs:string,"String 2") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-20.xq
deleted file mode 100644
index f3f3c21b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-20.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-20 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and decimal/double data types.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:decimal(-100)
-return
-fn:abs($var cast as xs:double treat as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-21.xq
deleted file mode 100644
index 734e74fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-21.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-21 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and decimal/float data types.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:decimal(-100)
-return
-fn:abs($var cast as xs:float treat as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-22.xq
deleted file mode 100644
index 3817c7e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-22.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-22 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and float/decimal data types (float cast as decimal treat as decimal).:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:float(-100)
-return
-fn:abs($var cast as xs:decimal treat as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-23.xq
deleted file mode 100644
index f67a4a19..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-23.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-23 :)
-(: Description: Evaluation of treat as expression with a "cast as" expression and double/decimal data types (double cast as decimal treat as decimal).:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:double(-100)
-return
-fn:abs($var cast as xs:decimal treat as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-24.xq
deleted file mode 100644
index 881e0e79..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-24.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-24 :)
-(: Description: Evaluation of treat as expression used as part of an addition operation.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := (100+200) div 10
-return
- ($var cast as xs:integer treat as xs:integer) + 10 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-25.xq
deleted file mode 100644
index da8cc341..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-25.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-25 :)
-(: Description: Evaluation of treat as expression used as part of an subtraction operation.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := (100+200) div 10
-return
- ($var cast as xs:integer treat as xs:integer) - 10 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-3.xq
deleted file mode 100644
index e8dba429..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-3 :)
-(: Description: Evaluation of treat as expression where involving an integer data type and div expression. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := 100
-return
-($var treat as xs:integer) div 2 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-4.xq
deleted file mode 100644
index e46e15d8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-4.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-4 :)
-(: Description: Evaluation of treat as expression where involving an integer data type and div expression. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := 100
-return
-fn:abs($var treat as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-5.xq
deleted file mode 100644
index 26ff63d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-5.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-5 :)
-(: Description: Evaluation of treat as expression where involving an decimal/integer data types and abs function. decimal treated as integer :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:decimal(100)
-return
-fn:abs($var cast as xs:integer treat as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-6.xq
deleted file mode 100644
index 27776066..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-6.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-6 :)
-(: Description: Evaluation of treat as expression where involving an xs:float data types and abs function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:float(100)
-return
-fn:abs($var treat as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-7.xq
deleted file mode 100644
index d52cee05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-7.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-7 :)
-(: Description: Evaluation of treat as expression where involving an xs:double data type and abs function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:double(100)
-return
-fn:abs($var treat as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-8.xq
deleted file mode 100644
index 9bfd1ba2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-8.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-8 :)
-(: Description: Evaluation of treat as expression where involving an xs:boolean data type and fn:not function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:boolean(fn:true())
-return
-fn:not($var treat as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-9.xq
deleted file mode 100644
index b27e2823..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/SeqExprTreat/treat-as-9.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: treat-as-9 :)
-(: Description: Evaluation of treat as expression where involving an xs:date data type and fn:year-from-date function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := xs:date("2000-01-01+05:00")
-return
-fn:year-from-date($var treat as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc1.xq
deleted file mode 100644
index aaeaea91..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc1.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(: Name: typeswitchhq1 :)
-(: Description: Simple test for evaluation of atomic value (integer) and various data types for case evaluation :)
-
-typeswitch (5)
- case $i as xs:integer
- return <wrap>test passed - integer data type</wrap>
- case $i as xs:date
- return <wrap>test failed</wrap>
- case $i as xs:time
- return <wrap>test failed</wrap>
- case $i as xs:string
- return <wrap>test failed</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc10.xq
deleted file mode 100644
index a0dd1b02..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc10.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq10 :)
-(: Description: Simple test for evaluation of simple anyURI expression and various data types for case evaluation :)
-
-typeswitch(xs:anyURI("http://example.com"))
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:anyURI
- return <wrap>test passed - xs:anyURI("http://www.example.com")is of anyURI type</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc11.xq
deleted file mode 100644
index 4011e328..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc11.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq11 :)
-(: Description: Simple test for evaluation of various expressions and should mathc the deafult value :)
-
-typeswitch(123)
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:anyURI
- return <wrap>test failed</wrap>
- default
- return <wrap>test passed - 123 is an integer (not an option on any cases)</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc12.xq
deleted file mode 100644
index 89cb9ded..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc12.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq12 :)
-(: Description: Simple test for evaluating dynamic error raised by default clause (no error raised) :)
-
-typeswitch(123)
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test passed - If a dynamic error is generated, then test failed.</wrap>
- default
- return 12 div 0
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc13.xq
deleted file mode 100644
index b7d4eddd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc13.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq13 :)
-(: Description: Simple test for typeswitch with operand expression (if Expression) evaluating to an integer. :)
-
-typeswitch(if (1 lt 2) then 3 else 4.5E4)
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test passed - "(1 lt 2) then 3 else 4.5E4" should evaluate to an integer</wrap>
- default
- return <wrap>test failed</wrap>
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc14.xq
deleted file mode 100644
index 7af74ee1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc14.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq14 :)
-(: Description: Simple test for typeswitch with operand expression (boolean) evaluating to boolean type :)
-
-typeswitch(fn:true() and fn:true())
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:boolean
- return <wrap>test passed - "fn:true() and fn:true()" should evaluate to boolean type</wrap>
- default
- return <wrap>test failed</wrap>
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc15.xq
deleted file mode 100644
index b234e39d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc15.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq15 :)
-(: Description: Simple test for typeswitch with operand expression (boolean or boolean) evaluating to boolean type :)
-
-typeswitch(fn:true() or fn:false())
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:boolean
- return <wrap>test passed - "fn:true() or fn:false()" should evaluate to boolean type</wrap>
- default
- return <wrap>test failed</wrap>
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc16.xq
deleted file mode 100644
index c5f2d06b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc16.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq16 :)
-(: Description: Simple test for typeswitch with operand expression, that is itself a typeswitch expression evaluating to integer type :)
-
-typeswitch(typeswitch (1) case $i as xs:integer return $i default return <a>fn:false</a> )
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test passed - the operand expression should evaluate to an integer type</wrap>
- default
- return <wrap>test failed</wrap>
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc17.xq
deleted file mode 100644
index 98381a84..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc17.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(: Name: typeswitchhq17 :)
-(: Description: Simple test for evaluation of atomic value (integer) and return contains integer expression :)
-
-typeswitch (5)
- case $i as xs:integer
- return xs:integer(1 + 1)
- case $i as xs:date
- return <wrap>test failed</wrap>
- case $i as xs:time
- return <wrap>test failed</wrap>
- case $i as xs:string
- return <wrap>test failed</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc18.xq
deleted file mode 100644
index 36970b77..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc18.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(: Name: typeswitchhq18 :)
-(: Description: Simple test for evaluation of atomic value (decimal) and return clause conatining an arithmetic expression with decimals:)
-
-typeswitch (5.1)
- case $i as xs:decimal
- return xs:decimal(1.1 + 3.1)
- case $i as xs:float
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:double
- return <wrap>test failed</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc19.xq
deleted file mode 100644
index e7e59e70..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc19.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: typeswitchhq19 :)
-(: Description: Simple test for evaluation of atomic value (double) and return clause containing a double addition operation. :)
-
-typeswitch (5.1E2)
- case $i as xs:integer
- return <wrap>test failed2</wrap>
- case $i as xs:double
- return xs:double(5.1E2 + 1.1E2)
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc2.xq
deleted file mode 100644
index cb4166c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc2.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(: Name: typeswitchhq2 :)
-(: Description: Simple test for evaluation of atomic value (decimal) and various data types for case evaluation :)
-
-typeswitch (5.1)
- case $i as xs:decimal
- return <wrap>test passed - 5.1 is a decimal type</wrap>
- case $i as xs:float
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:double
- return <wrap>test failed</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc20.xq
deleted file mode 100644
index 0f3c8ef2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc20.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: typeswitchhq20 :)
-(: Description: Simple test for evaluation of atomic value (string) and return clause containing a string operation :)
-typeswitch ("A String")
- case $i as xs:decimal
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:string
- return fn:string-length($i)
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc21.xq
deleted file mode 100644
index 94287074..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc21.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: typeswitchhq21 :)
-(: Description: Simple test for evaluation of atomic value ("1") and return clause containing an fn:count() :)
-typeswitch (1)
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return fn:count((1, 2, 3))
- case $i as xs:string
- return <wrap>test failed</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc22.xq
deleted file mode 100644
index 392267b8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc22.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: typeswitchhq22 :)
-(: Description: Simple test for evaluation of atomic value ("1") and return clause containing a subtraction operation :)
-typeswitch (1)
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return 5 - 3
- case $i as xs:string
- return <wrap>test failed</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc23.xq
deleted file mode 100644
index a10974cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc23.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: typeswitchhq23 :)
-(: Description: Simple test for evaluation of atomic value ("1") and return clause containing a multiplication operation :)
-typeswitch (1)
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return 5 * 2
- case $i as xs:string
- return <wrap>test failed</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc24.xq
deleted file mode 100644
index da95f029..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc24.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: typeswitchhq24 :)
-(: Description: Simple test for evaluation of atomic value ("1") and return clause containing a division (div) operation :)
-typeswitch (1)
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return 10 div 2
- case $i as xs:string
- return <wrap>test failed</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc25.xq
deleted file mode 100644
index 2aceafe3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc25.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: typeswitchhq25 :)
-(: Description: Simple test for evaluation of atomic value ("1") and return clause containing a division (idiv) operation :)
-typeswitch (1)
- case $i as xs:double
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return 10 idiv 2
- case $i as xs:string
- return <wrap>test failed</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc3.xq
deleted file mode 100644
index 7b307d4d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: typeswitchhq3 :)
-(: Description: Simple test for evaluation of atomic value (double) and various data types for case evaluation :)
-
-typeswitch (5.1E2)
- case $i as xs:integer
- return <wrap>test failed2</wrap>
- case $i as xs:double
- return <wrap>test passed - 5.1E2 is a double type</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc4.xq
deleted file mode 100644
index d48eee74..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: typeswitchhq4 :)
-(: Description: Simple test for evaluation of atomic value (string) and various data types for case evaluation :)
-typeswitch ("A String")
- case $i as xs:decimal
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:string
- return <wrap>test passed - "A String" is a string type</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc5.xq
deleted file mode 100644
index ff6de26f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc5.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq5 :)
-(: Description: Simple test for evaluation of atomic value (float) and various data types for case evaluation :)
-
-typeswitch (1267.43233E12)
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:double
- return <wrap>test passed - 1267.43233E12 is a double type</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc6.xq
deleted file mode 100644
index d5f5fa5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc6.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq6 :)
-(: Description: Simple test for evaluation of simple boolean expression and various data types for case evaluation :)
-
-typeswitch(1 > 2)
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:boolean
- return <wrap>test passed - 1 > 2 is a boolean type</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc7.xq
deleted file mode 100644
index a12afb8b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc7.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq7 :)
-(: Description: Simple test for evaluation of simple date expression and various data types for case evaluation :)
-
-typeswitch(xs:date("1999-05-31"))
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:date
- return <wrap>test passed - xs:date("1999-05-31")is of date type</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc8.xq
deleted file mode 100644
index 1e30b0f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc8.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq8 :)
-(: Description: Simple test for evaluation of simple time expression and various data types for case evaluation :)
-
-typeswitch(xs:time("12:00:00"))
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:time
- return <wrap>test passed - xs:time("12:00:00")is of time type</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc9.xq
deleted file mode 100644
index 62dd571e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/exprSeqTypes/sequenceExprTypeswitch/typeswitchhc9.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(: Name: typeswitchhq9 :)
-(: Description: Simple test for evaluation of simple dateTime expression and various data types for case evaluation :)
-
-typeswitch(xs:dateTime("1999-12-31T19:20:00"))
- case $i as xs:string
- return <wrap>test failed</wrap>
- case $i as xs:integer
- return <wrap>test failed</wrap>
- case $i as xs:dateTime
- return <wrap>test passed - xs:dateTime("1999-12-31T19:20:00")is of dateTime type</wrap>
- default
- return <wrap>test failed</wrap> \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1.xq
deleted file mode 100644
index 55816649..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Syntax: only ? is allowed as occurence indicator in 'cast as' expressions. :)
-(:*******************************************************:)
-'string' cast as xs:string* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-10.xq
deleted file mode 100644
index b83beec7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-10.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-10 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A non-atomic type is referenced, leading to a syntax error. :)
-(:*******************************************************:)
-'string' cast as item() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-100.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-100.xq
deleted file mode 100644
index 20909190..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-100.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-100 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `exists(xs:hexBinary("aa"))`. :)
-(:*******************************************************:)
-exists(xs:hexBinary("aa")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1000.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1000.xq
deleted file mode 100644
index 4b24dbbb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1000.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1000 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1001.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1001.xq
deleted file mode 100644
index 9c0568bc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1001.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1001 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1002.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1002.xq
deleted file mode 100644
index c780aefb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1002.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1002 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1003.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1003.xq
deleted file mode 100644
index 19105338..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1003.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1003 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1004.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1004.xq
deleted file mode 100644
index afd6439f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1004.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1004 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1005.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1005.xq
deleted file mode 100644
index 60d78a85..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1005.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1005 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:gYear constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:gYear() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1006.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1006.xq
deleted file mode 100644
index d673aea2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1006.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1006 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:gYear constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:gYear(
- "1999"
- ,
-
- "1999"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1007.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1007.xq
deleted file mode 100644
index 83fb0bb5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1007.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1007 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:gYear constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:gYear("1999")), 3, 1) instance of xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1008.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1008.xq
deleted file mode 100644
index e8c9a5d8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1008.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1008 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:gYear. :)
-(:*******************************************************:)
-xs:gYear("
- 1999
- ")
- eq
- xs:gYear("
- 1999
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1009.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1009.xq
deleted file mode 100644
index 4b5e1431..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1009.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1009 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:gYear. :)
-(:*******************************************************:)
-xs:gYear("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-101.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-101.xq
deleted file mode 100644
index 569d6e21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-101.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-101 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `count(xs:hexBinary(xs:hexBinary("03"))) eq 1`. :)
-(:*******************************************************:)
-count(xs:hexBinary(xs:hexBinary("03"))) eq 1 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1010.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1010.xq
deleted file mode 100644
index eb5f383c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1010.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1010 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "1999" . :)
-(:*******************************************************:)
-xs:gYear(xs:untypedAtomic(
- "1999"
- )) eq xs:gYear("1999") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1011.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1011.xq
deleted file mode 100644
index c9eda9c1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1011.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1011 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:gYear, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:gYear("1999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1012.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1012.xq
deleted file mode 100644
index 29ee6991..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1012.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1012 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1013.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1013.xq
deleted file mode 100644
index 8f2f1991..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1013.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1013 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gYear("1999") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1014.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1014.xq
deleted file mode 100644
index 72dc34cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1014.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1014 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1015.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1015.xq
deleted file mode 100644
index d17a853d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1015.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1015 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gYear("1999") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1016.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1016.xq
deleted file mode 100644
index d6a42264..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1016.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1016 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1017.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1017.xq
deleted file mode 100644
index 5ec3245a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1017.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1017 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1018.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1018.xq
deleted file mode 100644
index 7f3d2a3a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1018.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1018 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1019.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1019.xq
deleted file mode 100644
index 0150b1bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1019.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1019 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-102.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-102.xq
deleted file mode 100644
index d7725d03..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-102.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-102 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("aa")) eq "AA"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("aa")) eq "AA" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1020.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1020.xq
deleted file mode 100644
index ed875028..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1020.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1020 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1021.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1021.xq
deleted file mode 100644
index 679862fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1021.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1021 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1022.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1022.xq
deleted file mode 100644
index b570be77..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1022.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1022 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1023.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1023.xq
deleted file mode 100644
index d3ff0870..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1023.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1023 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1024.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1024.xq
deleted file mode 100644
index 60c2465b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1024.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1024 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1025.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1025.xq
deleted file mode 100644
index a9aa794a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1025.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1025 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1026.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1026.xq
deleted file mode 100644
index 08597934..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1026.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1026 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1027.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1027.xq
deleted file mode 100644
index ad0953aa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1027.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1027 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1028.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1028.xq
deleted file mode 100644
index 43f200c8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1028.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1028 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1029.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1029.xq
deleted file mode 100644
index 796c8d1f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1029.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1029 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-103.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-103.xq
deleted file mode 100644
index 6c521975..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-103.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-103 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("0a")) eq "0A"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("0a")) eq "0A" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1030.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1030.xq
deleted file mode 100644
index 3c80c889..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1030.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1030 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1031.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1031.xq
deleted file mode 100644
index e4d585e8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1031.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1031 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1032.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1032.xq
deleted file mode 100644
index 11df0c48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1032.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1032 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1033.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1033.xq
deleted file mode 100644
index 6702b398..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1033.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1033 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1034.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1034.xq
deleted file mode 100644
index 306c1b91..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1034.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1034 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1035.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1035.xq
deleted file mode 100644
index 269e38bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1035.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1035 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1036.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1036.xq
deleted file mode 100644
index 1adb55c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1036.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1036 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1037.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1037.xq
deleted file mode 100644
index 13822328..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1037.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1037 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1038.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1038.xq
deleted file mode 100644
index a7155ac2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1038.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1038 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:gYear is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:gYear
- eq
- xs:gYear("1999") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1039.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1039.xq
deleted file mode 100644
index 9bc944fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1039.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1039 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:gYear as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gYear("1999") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-104.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-104.xq
deleted file mode 100644
index f3cac2ea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-104.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-104 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("a0")) eq "A0"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("a0")) eq "A0" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1040.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1040.xq
deleted file mode 100644
index b5a34591..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1040.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1040 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1041.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1041.xq
deleted file mode 100644
index eb68f6d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1041.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1041 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1042.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1042.xq
deleted file mode 100644
index 05a52e34..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1042.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1042 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1043.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1043.xq
deleted file mode 100644
index d6deb22b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1043.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1043 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1044.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1044.xq
deleted file mode 100644
index 91835cb2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1044.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1044 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1045.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1045.xq
deleted file mode 100644
index a98c53c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1045.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1045 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1046.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1046.xq
deleted file mode 100644
index 2b105b2b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1046.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1046 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1047.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1047.xq
deleted file mode 100644
index fddd2561..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1047.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1047 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1048.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1048.xq
deleted file mode 100644
index 3d62a140..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1048.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1048 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1049.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1049.xq
deleted file mode 100644
index 8d7681a1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1049.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1049 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-105.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-105.xq
deleted file mode 100644
index 26a845e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-105.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-105 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("a4")) eq "A4"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("a4")) eq "A4" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1050.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1050.xq
deleted file mode 100644
index 508ea17a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1050.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1050 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1051.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1051.xq
deleted file mode 100644
index 78599c12..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1051.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1051 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1052.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1052.xq
deleted file mode 100644
index b60407a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1052.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1052 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1053.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1053.xq
deleted file mode 100644
index c47b0e51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1053.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1053 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1054.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1054.xq
deleted file mode 100644
index 6eb2f4e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1054.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1054 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYear to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:gYear("1999") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1055.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1055.xq
deleted file mode 100644
index e2cb1836..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1055.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1055 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1056.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1056.xq
deleted file mode 100644
index e67bb762..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1056.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1056 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYear as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:gYear("1999") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1057.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1057.xq
deleted file mode 100644
index 5589ce3f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1057.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1057 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:gMonthDay constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:gMonthDay() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1058.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1058.xq
deleted file mode 100644
index fdec8673..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1058.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1058 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:gMonthDay constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:gMonthDay(
- "--11-13"
- ,
-
- "--11-13"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1059.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1059.xq
deleted file mode 100644
index bc1e72df..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1059.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1059 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:gMonthDay constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:gMonthDay("--11-13")), 3, 1) instance of xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-106.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-106.xq
deleted file mode 100644
index 7efa0082..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-106.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-106 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("c0")) eq "C0"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("c0")) eq "C0" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1060.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1060.xq
deleted file mode 100644
index aba2f7b6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1060.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1060 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("
- --11-13
- ")
- eq
- xs:gMonthDay("
- --11-13
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1061.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1061.xq
deleted file mode 100644
index 4e054580..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1061.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1061 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1062.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1062.xq
deleted file mode 100644
index 91f6e9d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1062.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1062 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "--11-13" . :)
-(:*******************************************************:)
-xs:gMonthDay(xs:untypedAtomic(
- "--11-13"
- )) eq xs:gMonthDay("--11-13") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1063.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1063.xq
deleted file mode 100644
index 2672f7f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1063.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1063 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:gMonthDay, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:gMonthDay("--11-13")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1064.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1064.xq
deleted file mode 100644
index 2bd36b69..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1064.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1064 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1065.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1065.xq
deleted file mode 100644
index 5c7784e5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1065.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1065 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1066.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1066.xq
deleted file mode 100644
index f4e24878..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1066.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1066 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1067.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1067.xq
deleted file mode 100644
index d4288996..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1067.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1067 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1068.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1068.xq
deleted file mode 100644
index ebcd7961..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1068.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1068 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1069.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1069.xq
deleted file mode 100644
index b680c9e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1069.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1069 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-107.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-107.xq
deleted file mode 100644
index 0b1083c2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-107.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-107 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("fA")) eq "FA"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("fA")) eq "FA" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1070.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1070.xq
deleted file mode 100644
index d610ee47..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1070.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1070 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1071.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1071.xq
deleted file mode 100644
index 0f4c4b04..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1071.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1071 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1072.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1072.xq
deleted file mode 100644
index 47551233..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1072.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1072 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1073.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1073.xq
deleted file mode 100644
index 2ddab3ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1073.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1073 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1074.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1074.xq
deleted file mode 100644
index f3c7b977..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1074.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1074 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1075.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1075.xq
deleted file mode 100644
index a94ce64e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1075.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1075 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1076.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1076.xq
deleted file mode 100644
index 6910fed3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1076.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1076 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1077.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1077.xq
deleted file mode 100644
index 37f4eaf0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1077.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1077 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1078.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1078.xq
deleted file mode 100644
index 68243b7f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1078.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1078 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1079.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1079.xq
deleted file mode 100644
index e18c78ae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1079.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1079 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-108.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-108.xq
deleted file mode 100644
index 0c79ec37..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-108.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-108 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("10")) eq "10"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("10")) eq "10" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1080.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1080.xq
deleted file mode 100644
index 8338aa82..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1080.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1080 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1081.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1081.xq
deleted file mode 100644
index 21f7d6f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1081.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1081 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1082.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1082.xq
deleted file mode 100644
index 96862863..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1082.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1082 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1083.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1083.xq
deleted file mode 100644
index e82257d5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1083.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1083 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1084.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1084.xq
deleted file mode 100644
index 082d8010..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1084.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1084 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1085.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1085.xq
deleted file mode 100644
index 18b926ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1085.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1085 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1086.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1086.xq
deleted file mode 100644
index a833dfb0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1086.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1086 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1087.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1087.xq
deleted file mode 100644
index 7626f24b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1087.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1087 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1088.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1088.xq
deleted file mode 100644
index ee2ceacb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1088.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1088 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1089.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1089.xq
deleted file mode 100644
index 04ad9d18..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1089.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1089 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-109.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-109.xq
deleted file mode 100644
index 719e3aa4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-109.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-109 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("031a34123b")) eq "031A34123B"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("031a34123b")) eq "031A34123B" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1090.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1090.xq
deleted file mode 100644
index d9a0cead..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1090.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1090 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1091.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1091.xq
deleted file mode 100644
index 98ceb4bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1091.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1091 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1092.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1092.xq
deleted file mode 100644
index 338c350c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1092.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1092 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:gMonthDay is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:gMonthDay
- eq
- xs:gMonthDay("--11-13") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1093.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1093.xq
deleted file mode 100644
index 6fbe3fa2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1093.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1093 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:gMonthDay as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1094.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1094.xq
deleted file mode 100644
index 88c75d82..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1094.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1094 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1095.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1095.xq
deleted file mode 100644
index b9e04b3d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1095.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1095 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1096.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1096.xq
deleted file mode 100644
index ca1a1dc6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1096.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1096 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1097.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1097.xq
deleted file mode 100644
index e3db0c21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1097.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1097 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1098.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1098.xq
deleted file mode 100644
index 56ac8398..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1098.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1098 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1099.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1099.xq
deleted file mode 100644
index 580c2a9a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1099.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1099 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-11.xq
deleted file mode 100644
index 1cae1687..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-11.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-11 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A non-atomic type is referenced, leading to a syntax error. :)
-(:*******************************************************:)
-'string' cast as node() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-110.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-110.xq
deleted file mode 100644
index 151ff378..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-110.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-110 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("03")) eq "03"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("03")) eq "03" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1100.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1100.xq
deleted file mode 100644
index 42443a0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1100.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1100 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1101.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1101.xq
deleted file mode 100644
index b583e19d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1101.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1101 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1102.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1102.xq
deleted file mode 100644
index 2f6e5f52..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1102.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1102 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1103.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1103.xq
deleted file mode 100644
index c7f90d2e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1103.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1103 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1104.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1104.xq
deleted file mode 100644
index 3e915902..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1104.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1104 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1105.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1105.xq
deleted file mode 100644
index 285479d2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1105.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1105 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1106.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1106.xq
deleted file mode 100644
index e8de37e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1106.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1106 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonthDay to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-13") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1107.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1107.xq
deleted file mode 100644
index 4085b250..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1107.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1107 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1108.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1108.xq
deleted file mode 100644
index 9a60be77..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1108.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1108 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonthDay as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:gMonthDay("--11-13") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1109.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1109.xq
deleted file mode 100644
index 7111728d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1109.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1109 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:gDay constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:gDay() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-111.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-111.xq
deleted file mode 100644
index 8ad0f36d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-111.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-111 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("0c")) eq "0C"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("0c")) eq "0C" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1110.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1110.xq
deleted file mode 100644
index eaa44e34..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1110.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1110 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:gDay constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:gDay(
- "---03"
- ,
-
- "---03"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1111.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1111.xq
deleted file mode 100644
index c16afae9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1111.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1111 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:gDay constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:gDay("---03")), 3, 1) instance of xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1112.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1112.xq
deleted file mode 100644
index 59307c30..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1112.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1112 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("
- ---03
- ")
- eq
- xs:gDay("
- ---03
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1113.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1113.xq
deleted file mode 100644
index fc1d2903..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1113.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1113 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1114.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1114.xq
deleted file mode 100644
index 155da2e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1114.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1114 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "---03" . :)
-(:*******************************************************:)
-xs:gDay(xs:untypedAtomic(
- "---03"
- )) eq xs:gDay("---03") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1115.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1115.xq
deleted file mode 100644
index c6449f7c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1115.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1115 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:gDay, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:gDay("---03")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1116.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1116.xq
deleted file mode 100644
index 80f87a4d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1116.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1116 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1117.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1117.xq
deleted file mode 100644
index 9796c713..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1117.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1117 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gDay("---03") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1118.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1118.xq
deleted file mode 100644
index 7eac110f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1118.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1118 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1119.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1119.xq
deleted file mode 100644
index daec0818..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1119.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1119 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gDay("---03") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-112.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-112.xq
deleted file mode 100644
index d77b70b6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-112.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-112 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("0b")) eq "0B"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("0b")) eq "0B" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1120.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1120.xq
deleted file mode 100644
index 9ca0887a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1120.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1120 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1121.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1121.xq
deleted file mode 100644
index 80aaca0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1121.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1121 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1122.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1122.xq
deleted file mode 100644
index fa50746a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1122.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1122 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1123.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1123.xq
deleted file mode 100644
index 5df04af6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1123.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1123 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1124.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1124.xq
deleted file mode 100644
index a34d773b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1124.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1124 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1125.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1125.xq
deleted file mode 100644
index 6a43d127..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1125.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1125 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1126.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1126.xq
deleted file mode 100644
index 41f524ab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1126.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1126 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1127.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1127.xq
deleted file mode 100644
index 7764c2d5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1127.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1127 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1128.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1128.xq
deleted file mode 100644
index 7b49127e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1128.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1128 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1129.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1129.xq
deleted file mode 100644
index 3b9f83de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1129.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1129 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-113.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-113.xq
deleted file mode 100644
index cc0f900e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-113.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-113 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary("3a")) eq "3A"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("3a")) eq "3A" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1130.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1130.xq
deleted file mode 100644
index c9f44c22..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1130.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1130 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1131.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1131.xq
deleted file mode 100644
index d6ff01bf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1131.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1131 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1132.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1132.xq
deleted file mode 100644
index 81ea286b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1132.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1132 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1133.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1133.xq
deleted file mode 100644
index 91986dfc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1133.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1133 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1134.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1134.xq
deleted file mode 100644
index dd442627..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1134.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1134 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1135.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1135.xq
deleted file mode 100644
index 8f388bc5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1135.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1135 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1136.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1136.xq
deleted file mode 100644
index 50bf87df..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1136.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1136 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1137.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1137.xq
deleted file mode 100644
index 593b6086..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1137.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1137 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1138.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1138.xq
deleted file mode 100644
index 97b7fbfc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1138.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1138 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1139.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1139.xq
deleted file mode 100644
index 6eb97892..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1139.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1139 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-114.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-114.xq
deleted file mode 100644
index 0b0f569b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-114.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-114 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An empty string is a valid lexical representation for xs:hexBinary, and means 'no data. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary("")) eq "" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1140.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1140.xq
deleted file mode 100644
index 227c48d2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1140.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1140 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1141.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1141.xq
deleted file mode 100644
index 0ea967dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1141.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1141 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1142.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1142.xq
deleted file mode 100644
index a543df33..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1142.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1142 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1143.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1143.xq
deleted file mode 100644
index 1a71543f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1143.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1143 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1144.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1144.xq
deleted file mode 100644
index 5d4f3095..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1144.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1144 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1145.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1145.xq
deleted file mode 100644
index 7d903644..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1145.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1145 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1146.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1146.xq
deleted file mode 100644
index 6aa2a404..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1146.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1146 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:gDay is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:gDay
- eq
- xs:gDay("---03") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1147.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1147.xq
deleted file mode 100644
index a3e1c54a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1147.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1147 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:gDay as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gDay("---03") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1148.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1148.xq
deleted file mode 100644
index 89d3d01d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1148.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1148 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1149.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1149.xq
deleted file mode 100644
index 65e4638c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1149.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1149 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-115.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-115.xq
deleted file mode 100644
index 17f78db7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-115.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-115 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("=aaabbcd")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1150.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1150.xq
deleted file mode 100644
index db8f2663..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1150.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1150 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1151.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1151.xq
deleted file mode 100644
index 22301346..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1151.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1151 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1152.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1152.xq
deleted file mode 100644
index ecf2013b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1152.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1152 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1153.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1153.xq
deleted file mode 100644
index 945a2a1d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1153.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1153 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1154.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1154.xq
deleted file mode 100644
index 6cbc7887..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1154.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1154 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1155.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1155.xq
deleted file mode 100644
index 3e4a5698..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1155.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1155 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1156.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1156.xq
deleted file mode 100644
index fa68fb73..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1156.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1156 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1157.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1157.xq
deleted file mode 100644
index 1ca6b244..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1157.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1157 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1158.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1158.xq
deleted file mode 100644
index 5127720a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1158.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1158 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gDay to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:gDay("---03") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1159.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1159.xq
deleted file mode 100644
index 8e0daffe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1159.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1159 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-116.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-116.xq
deleted file mode 100644
index c9befd69..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-116.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-116 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("F===")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1160.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1160.xq
deleted file mode 100644
index 9969f39d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1160.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1160 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gDay as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:gDay("---03") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1161.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1161.xq
deleted file mode 100644
index 8fcb7a93..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1161.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1161 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:gMonth constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:gMonth() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1162.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1162.xq
deleted file mode 100644
index 7006da52..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1162.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1162 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:gMonth constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:gMonth(
- "--11"
- ,
-
- "--11"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1163.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1163.xq
deleted file mode 100644
index fcd419c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1163.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1163 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:gMonth constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:gMonth("--11")), 3, 1) instance of xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1164.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1164.xq
deleted file mode 100644
index 12cf9595..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1164.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1164 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:gMonth. :)
-(:*******************************************************:)
-xs:gMonth("
- --11
- ")
- eq
- xs:gMonth("
- --11
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1165.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1165.xq
deleted file mode 100644
index e0a0fb8c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1165.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1165 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:gMonth. :)
-(:*******************************************************:)
-xs:gMonth("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1166.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1166.xq
deleted file mode 100644
index 023387bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1166.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1166 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "--11" . :)
-(:*******************************************************:)
-xs:gMonth(xs:untypedAtomic(
- "--11"
- )) eq xs:gMonth("--11") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1167.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1167.xq
deleted file mode 100644
index 38072d71..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1167.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1167 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:gMonth, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:gMonth("--11")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1168.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1168.xq
deleted file mode 100644
index 982add21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1168.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1168 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1169.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1169.xq
deleted file mode 100644
index f25c1010..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1169.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1169 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gMonth("--11") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-117.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-117.xq
deleted file mode 100644
index a89bb3c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-117.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-117 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("a")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1170.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1170.xq
deleted file mode 100644
index 7b36bce1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1170.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1170 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1171.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1171.xq
deleted file mode 100644
index cb829b5b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1171.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1171 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gMonth("--11") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1172.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1172.xq
deleted file mode 100644
index d949bd65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1172.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1172 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1173.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1173.xq
deleted file mode 100644
index 79a3deb8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1173.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1173 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1174.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1174.xq
deleted file mode 100644
index adc9398c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1174.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1174 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1175.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1175.xq
deleted file mode 100644
index e3243117..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1175.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1175 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1176.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1176.xq
deleted file mode 100644
index e44b8d64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1176.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1176 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1177.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1177.xq
deleted file mode 100644
index d1fbc792..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1177.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1177 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1178.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1178.xq
deleted file mode 100644
index 20603623..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1178.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1178 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1179.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1179.xq
deleted file mode 100644
index e46497ea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1179.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1179 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-118.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-118.xq
deleted file mode 100644
index b1cff275..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-118.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-118 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("aaaa====")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1180.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1180.xq
deleted file mode 100644
index 776e0892..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1180.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1180 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1181.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1181.xq
deleted file mode 100644
index bc95d4fa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1181.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1181 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1182.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1182.xq
deleted file mode 100644
index 91ad2aca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1182.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1182 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1183.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1183.xq
deleted file mode 100644
index 399af8d0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1183.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1183 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1184.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1184.xq
deleted file mode 100644
index d9f00f91..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1184.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1184 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1185.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1185.xq
deleted file mode 100644
index df3be4a1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1185.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1185 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1186.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1186.xq
deleted file mode 100644
index dfaf0d2e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1186.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1186 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1187.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1187.xq
deleted file mode 100644
index bb1b1928..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1187.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1187 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1188.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1188.xq
deleted file mode 100644
index 29fc4ea9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1188.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1188 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1189.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1189.xq
deleted file mode 100644
index cfe034a2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1189.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1189 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-119.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-119.xq
deleted file mode 100644
index 98b34467..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-119.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-119 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("aaaa=bcd")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1190.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1190.xq
deleted file mode 100644
index a8cfe40b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1190.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1190 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1191.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1191.xq
deleted file mode 100644
index 7dd911ab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1191.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1191 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1192.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1192.xq
deleted file mode 100644
index 96af91cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1192.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1192 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1193.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1193.xq
deleted file mode 100644
index 4ccaf46c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1193.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1193 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1194.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1194.xq
deleted file mode 100644
index 3f629fbb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1194.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1194 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1195.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1195.xq
deleted file mode 100644
index 0e1c03ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1195.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1195 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1196.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1196.xq
deleted file mode 100644
index 8e712e37..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1196.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1196 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1197.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1197.xq
deleted file mode 100644
index 726828ab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1197.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1197 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1198.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1198.xq
deleted file mode 100644
index 77d274cc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1198.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1198 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1199.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1199.xq
deleted file mode 100644
index d37d2d71..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1199.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1199 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-12.xq
deleted file mode 100644
index 5ad27d7e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-12.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-12 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A non-atomic type is referenced, leading to a syntax error. :)
-(:*******************************************************:)
-'string' cast as attribute() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-120.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-120.xq
deleted file mode 100644
index 34ba49f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-120.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-120 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("aaaaa=======")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1200.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1200.xq
deleted file mode 100644
index 6eca32f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1200.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1200 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:gMonth is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:gMonth
- eq
- xs:gMonth("--11") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1201.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1201.xq
deleted file mode 100644
index 3ac93e11..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1201.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1201 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:gMonth as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gMonth("--11") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1202.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1202.xq
deleted file mode 100644
index 1c61f189..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1202.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1202 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1203.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1203.xq
deleted file mode 100644
index 26ae439e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1203.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1203 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1204.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1204.xq
deleted file mode 100644
index ca46fad9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1204.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1204 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1205.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1205.xq
deleted file mode 100644
index 1fdc3e88..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1205.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1205 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1206.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1206.xq
deleted file mode 100644
index 35f4f8c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1206.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1206 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1207.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1207.xq
deleted file mode 100644
index 5f171d0d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1207.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1207 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1208.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1208.xq
deleted file mode 100644
index 3bbe9cb9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1208.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1208 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1209.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1209.xq
deleted file mode 100644
index 0132c8aa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1209.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1209 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-121.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-121.xq
deleted file mode 100644
index 1e55d57c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-121.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-121 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("aaaabcd")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1210.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1210.xq
deleted file mode 100644
index abfbc3d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1210.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1210 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:gMonth to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:gMonth("--11") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1211.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1211.xq
deleted file mode 100644
index e7cb1a7a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1211.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1211 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1212.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1212.xq
deleted file mode 100644
index 30eee511..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1212.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1212 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:gMonth as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:gMonth("--11") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1213.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1213.xq
deleted file mode 100644
index beb58eb6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1213.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1213 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:boolean constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:boolean() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1214.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1214.xq
deleted file mode 100644
index 15fad85b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1214.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1214 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:boolean constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:boolean(
- "true"
- ,
-
- "true"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1215.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1215.xq
deleted file mode 100644
index 96c2f671..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1215.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1215 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:boolean constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:boolean("true")), 3, 1) instance of xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1216.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1216.xq
deleted file mode 100644
index 7b1bce41..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1216.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1216 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:boolean. :)
-(:*******************************************************:)
-xs:boolean("
- true
- ")
- eq
- xs:boolean("
- true
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1217.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1217.xq
deleted file mode 100644
index ff8069f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1217.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1217 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:boolean. :)
-(:*******************************************************:)
-xs:boolean("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1218.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1218.xq
deleted file mode 100644
index 4f2ada2b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1218.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1218 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "true" . :)
-(:*******************************************************:)
-xs:boolean(xs:untypedAtomic(
- "true"
- )) eq xs:boolean("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1219.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1219.xq
deleted file mode 100644
index 691a7f65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1219.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1219 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Applying fn:boolean() to a value of type xs:boolean that has the lexical value ' "true" ' should result in the boolean value true. :)
-(:*******************************************************:)
-
- boolean(xs:boolean("true")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-122.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-122.xq
deleted file mode 100644
index bf413de6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-122.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-122 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("aaaabcd|")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1220.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1220.xq
deleted file mode 100644
index f2a6f6c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1220.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1220 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1221.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1221.xq
deleted file mode 100644
index 9be67df0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1221.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1221 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:boolean("true") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1222.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1222.xq
deleted file mode 100644
index 31636351..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1222.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1222 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1223.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1223.xq
deleted file mode 100644
index 96535a6b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1223.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1223 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:boolean("true") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1224.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1224.xq
deleted file mode 100644
index 831a9447..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1224.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1224 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:float is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:float
- ne
- xs:float("3.4e5") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1225.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1225.xq
deleted file mode 100644
index e4fd6510..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1225.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1225 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:float as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:boolean("true") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1226.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1226.xq
deleted file mode 100644
index 26c10a27..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1226.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1226 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:double is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:double
- ne
- xs:double("3.3e3") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1227.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1227.xq
deleted file mode 100644
index 17240758..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1227.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1227 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:double as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:boolean("true") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1228.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1228.xq
deleted file mode 100644
index f78cf9a5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1228.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1228 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:decimal is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:decimal
- ne
- xs:decimal("10.01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1229.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1229.xq
deleted file mode 100644
index 9d565f98..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1229.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1229 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:decimal as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:boolean("true") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-123.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-123.xq
deleted file mode 100644
index 1ae9f58f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-123.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-123 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("aabb=d==")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1230.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1230.xq
deleted file mode 100644
index 7d5cdc7c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1230.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1230 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:integer is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:integer
- ne
- xs:integer("6789") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1231.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1231.xq
deleted file mode 100644
index ba87f6fa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1231.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1231 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:integer as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:boolean("true") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1232.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1232.xq
deleted file mode 100644
index f2aeb7e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1232.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1232 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1233.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1233.xq
deleted file mode 100644
index 4e979de7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1233.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1233 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1234.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1234.xq
deleted file mode 100644
index e744772a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1234.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1234 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1235.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1235.xq
deleted file mode 100644
index 237662d1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1235.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1235 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1236.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1236.xq
deleted file mode 100644
index 323ec787..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1236.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1236 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1237.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1237.xq
deleted file mode 100644
index 7eaab1a1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1237.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1237 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1238.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1238.xq
deleted file mode 100644
index 7afbbec3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1238.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1238 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1239.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1239.xq
deleted file mode 100644
index 8e020961..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1239.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1239 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-124.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-124.xq
deleted file mode 100644
index a3a5b169..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-124.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-124 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("aabbcd=a")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1240.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1240.xq
deleted file mode 100644
index 079b1881..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1240.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1240 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1241.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1241.xq
deleted file mode 100644
index 77a41906..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1241.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1241 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1242.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1242.xq
deleted file mode 100644
index f7bbcc38..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1242.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1242 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1243.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1243.xq
deleted file mode 100644
index 9076b027..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1243.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1243 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1244.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1244.xq
deleted file mode 100644
index bbf08fdb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1244.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1244 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1245.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1245.xq
deleted file mode 100644
index 1b5ade29..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1245.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1245 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1246.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1246.xq
deleted file mode 100644
index de4801a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1246.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1246 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1247.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1247.xq
deleted file mode 100644
index 704ed851..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1247.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1247 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1248.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1248.xq
deleted file mode 100644
index e0595251..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1248.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1248 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1249.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1249.xq
deleted file mode 100644
index d214d902..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1249.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1249 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-125.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-125.xq
deleted file mode 100644
index df15f030..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-125.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-125 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An invalid lexical representation for xs:base64Binary. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("abcdefghi")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1250.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1250.xq
deleted file mode 100644
index 31247415..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1250.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1250 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1251.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1251.xq
deleted file mode 100644
index 690c26f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1251.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1251 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1252.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1252.xq
deleted file mode 100644
index a716e333..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1252.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1252 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1253.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1253.xq
deleted file mode 100644
index a77dfed3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1253.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1253 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1254.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1254.xq
deleted file mode 100644
index 5cab2659..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1254.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1254 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:boolean is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:boolean
- eq
- xs:boolean("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1255.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1255.xq
deleted file mode 100644
index cfb2c3bf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1255.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1255 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:boolean as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:boolean("true") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1256.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1256.xq
deleted file mode 100644
index 7e03f578..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1256.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1256 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1257.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1257.xq
deleted file mode 100644
index c180cee4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1257.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1257 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1258.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1258.xq
deleted file mode 100644
index 15c4edb1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1258.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1258 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1259.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1259.xq
deleted file mode 100644
index bf6fb9cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1259.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1259 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-126.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-126.xq
deleted file mode 100644
index bff485c7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-126.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-126 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary("0w==")) eq "0w=="`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("0w==")) eq "0w==" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1260.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1260.xq
deleted file mode 100644
index 09130bec..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1260.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1260 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1261.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1261.xq
deleted file mode 100644
index 69c60a56..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1261.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1261 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1262.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1262.xq
deleted file mode 100644
index d2a01863..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1262.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1262 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:boolean to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:boolean("true") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1263.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1263.xq
deleted file mode 100644
index b7e583be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1263.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1263 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1264.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1264.xq
deleted file mode 100644
index ce513a56..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1264.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1264 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:boolean as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:boolean("true") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1265.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1265.xq
deleted file mode 100644
index f3c1b008..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1265.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1265 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:base64Binary constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:base64Binary() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1266.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1266.xq
deleted file mode 100644
index 97b83819..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1266.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1266 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:base64Binary constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:base64Binary(
- "aaaa"
- ,
-
- "aaaa"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1267.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1267.xq
deleted file mode 100644
index 671df0c2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1267.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1267 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:base64Binary constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:base64Binary("aaaa")), 3, 1) instance of xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1268.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1268.xq
deleted file mode 100644
index 5ee463e7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1268.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1268 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:base64Binary. :)
-(:*******************************************************:)
-xs:base64Binary("
- aaaa
- ")
- eq
- xs:base64Binary("
- aaaa
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1269.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1269.xq
deleted file mode 100644
index ba7e7bf7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1269.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1269 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An empty string is a valid lexical representation of xs:base64Binary. :)
-(:*******************************************************:)
-xs:base64Binary("")
- eq
- xs:base64Binary("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-127.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-127.xq
deleted file mode 100644
index 9024925a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-127.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-127 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary("aaa a")) eq "aaaa"`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("aaa a")) eq "aaaa" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1270.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1270.xq
deleted file mode 100644
index 39d1f1ab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1270.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1270 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "aaaa" . :)
-(:*******************************************************:)
-xs:base64Binary(xs:untypedAtomic(
- "aaaa"
- )) eq xs:base64Binary("aaaa") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1271.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1271.xq
deleted file mode 100644
index bfe89c18..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1271.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1271 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:base64Binary, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:base64Binary("aaaa")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1272.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1272.xq
deleted file mode 100644
index fef91d00..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1272.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1272 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1273.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1273.xq
deleted file mode 100644
index afb26bd4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1273.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1273 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1274.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1274.xq
deleted file mode 100644
index a3b6af42..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1274.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1274 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1275.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1275.xq
deleted file mode 100644
index 3c933afa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1275.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1275 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1276.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1276.xq
deleted file mode 100644
index d6252569..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1276.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1276 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1277.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1277.xq
deleted file mode 100644
index 4302ad4c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1277.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1277 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1278.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1278.xq
deleted file mode 100644
index 3e874239..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1278.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1278 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1279.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1279.xq
deleted file mode 100644
index bcc08db4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1279.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1279 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-128.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-128.xq
deleted file mode 100644
index 99a8fba7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-128.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-128 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary("frfhforlksid7453")) eq "frfhforlksid7453"`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("frfhforlksid7453")) eq "frfhforlksid7453" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1280.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1280.xq
deleted file mode 100644
index 8d262a65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1280.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1280 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1281.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1281.xq
deleted file mode 100644
index 63dfe16c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1281.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1281 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1282.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1282.xq
deleted file mode 100644
index 03c9d365..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1282.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1282 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1283.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1283.xq
deleted file mode 100644
index 8552b4b8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1283.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1283 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1284.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1284.xq
deleted file mode 100644
index 0a8973af..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1284.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1284 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1285.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1285.xq
deleted file mode 100644
index a797d2b0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1285.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1285 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1286.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1286.xq
deleted file mode 100644
index 4c9d22ec..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1286.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1286 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1287.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1287.xq
deleted file mode 100644
index 2dd6f385..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1287.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1287 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1288.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1288.xq
deleted file mode 100644
index b7333937..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1288.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1288 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1289.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1289.xq
deleted file mode 100644
index 364abae3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1289.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1289 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-129.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-129.xq
deleted file mode 100644
index 97d79585..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-129.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-129 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: If the last tetragram ends in '==' then the previous character must be one of [AQgw]. :)
-(:*******************************************************:)
-xs:base64Binary("frfhforlksid745323==") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1290.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1290.xq
deleted file mode 100644
index abb65c6c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1290.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1290 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1291.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1291.xq
deleted file mode 100644
index 2886323a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1291.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1291 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1292.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1292.xq
deleted file mode 100644
index 9fe065da..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1292.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1292 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1293.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1293.xq
deleted file mode 100644
index 6fcf03b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1293.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1293 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1294.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1294.xq
deleted file mode 100644
index 2181b46b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1294.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1294 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1295.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1295.xq
deleted file mode 100644
index 90afa55c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1295.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1295 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1296.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1296.xq
deleted file mode 100644
index 968adddc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1296.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1296 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1297.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1297.xq
deleted file mode 100644
index ae359d78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1297.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1297 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1298.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1298.xq
deleted file mode 100644
index 32a54c24..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1298.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1298 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1299.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1299.xq
deleted file mode 100644
index c9d890a3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1299.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1299 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-13.xq
deleted file mode 100644
index 3d4f8c3e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-13.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-13 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A non-atomic type is referenced, leading to a syntax error. :)
-(:*******************************************************:)
-'string' cast as empty-sequence() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-130.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-130.xq
deleted file mode 100644
index ebfa8e1c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-130.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-130 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("03"))) eq "Aw=="`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("03"))) eq "Aw==" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1300.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1300.xq
deleted file mode 100644
index f8a2c519..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1300.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1300 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1301.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1301.xq
deleted file mode 100644
index c485f515..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1301.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1301 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1302.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1302.xq
deleted file mode 100644
index 27129c3b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1302.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1302 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1303.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1303.xq
deleted file mode 100644
index ce837ca0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1303.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1303 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1304.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1304.xq
deleted file mode 100644
index 977b4e48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1304.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1304 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1305.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1305.xq
deleted file mode 100644
index 4776aa7e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1305.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1305 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1306.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1306.xq
deleted file mode 100644
index 293e0e69..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1306.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1306 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1307.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1307.xq
deleted file mode 100644
index eb9c64b8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1307.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1307 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1308.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1308.xq
deleted file mode 100644
index 668b4d28..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1308.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1308 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:base64Binary is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:base64Binary
- eq
- xs:base64Binary("aaaa") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1309.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1309.xq
deleted file mode 100644
index f263497e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1309.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1309 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:base64Binary as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-131.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-131.xq
deleted file mode 100644
index 3805aaf6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-131.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-131 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("0f3c"))) eq "Dzw="`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("0f3c"))) eq "Dzw=" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1310.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1310.xq
deleted file mode 100644
index 5157b22c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1310.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1310 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:hexBinary is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:hexBinary
- ne
- xs:hexBinary("0FB7") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1311.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1311.xq
deleted file mode 100644
index 9719c537..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1311.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1311 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:hexBinary as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1312.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1312.xq
deleted file mode 100644
index 2726c3cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1312.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1312 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1313.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1313.xq
deleted file mode 100644
index 189008a3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1313.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1313 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1314.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1314.xq
deleted file mode 100644
index 05568c1f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1314.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1314 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:base64Binary to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:base64Binary("aaaa") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1315.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1315.xq
deleted file mode 100644
index a7bd714d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1315.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1315 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1316.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1316.xq
deleted file mode 100644
index 04199cff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1316.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1316 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:base64Binary as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:base64Binary("aaaa") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1317.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1317.xq
deleted file mode 100644
index d4b0d8b5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1317.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1317 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:hexBinary constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:hexBinary() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1318.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1318.xq
deleted file mode 100644
index b878f67f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1318.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1318 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:hexBinary constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:hexBinary(
- "0FB7"
- ,
-
- "0FB7"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1319.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1319.xq
deleted file mode 100644
index 2165d5ad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1319.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1319 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:hexBinary constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:hexBinary("0FB7")), 3, 1) instance of xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-132.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-132.xq
deleted file mode 100644
index 1e1789a2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-132.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-132 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("12"))) eq "Eg=="`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("12"))) eq "Eg==" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1320.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1320.xq
deleted file mode 100644
index 5f229293..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1320.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1320 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:hexBinary. :)
-(:*******************************************************:)
-xs:hexBinary("
- 0FB7
- ")
- eq
- xs:hexBinary("
- 0FB7
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1321.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1321.xq
deleted file mode 100644
index 0185e9e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1321.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1321 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An empty string is a valid lexical representation of xs:hexBinary. :)
-(:*******************************************************:)
-xs:hexBinary("")
- eq
- xs:hexBinary("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1322.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1322.xq
deleted file mode 100644
index 648ca909..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1322.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1322 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "0FB7" . :)
-(:*******************************************************:)
-xs:hexBinary(xs:untypedAtomic(
- "0FB7"
- )) eq xs:hexBinary("0FB7") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1323.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1323.xq
deleted file mode 100644
index 3b4097d7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1323.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1323 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:hexBinary, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:hexBinary("0FB7")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1324.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1324.xq
deleted file mode 100644
index 11a698db..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1324.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1324 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1325.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1325.xq
deleted file mode 100644
index 708c527e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1325.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1325 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1326.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1326.xq
deleted file mode 100644
index b18f765d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1326.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1326 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1327.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1327.xq
deleted file mode 100644
index c31ac3b5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1327.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1327 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1328.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1328.xq
deleted file mode 100644
index 0a21eb1c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1328.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1328 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1329.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1329.xq
deleted file mode 100644
index b4e9ae23..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1329.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1329 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-133.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-133.xq
deleted file mode 100644
index 39401481..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-133.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-133 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("3B"))) eq "Ow=="`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("3B"))) eq "Ow==" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1330.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1330.xq
deleted file mode 100644
index 66aa4117..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1330.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1330 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1331.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1331.xq
deleted file mode 100644
index 0c2157bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1331.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1331 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1332.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1332.xq
deleted file mode 100644
index da0eef25..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1332.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1332 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1333.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1333.xq
deleted file mode 100644
index 4ac20411..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1333.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1333 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1334.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1334.xq
deleted file mode 100644
index f79fae59..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1334.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1334 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1335.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1335.xq
deleted file mode 100644
index b2f4c6ce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1335.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1335 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1336.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1336.xq
deleted file mode 100644
index a49f627b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1336.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1336 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1337.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1337.xq
deleted file mode 100644
index b9d5fd1e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1337.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1337 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1338.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1338.xq
deleted file mode 100644
index d1044ade..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1338.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1338 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1339.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1339.xq
deleted file mode 100644
index 04201787..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1339.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1339 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-134.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-134.xq
deleted file mode 100644
index 228e0ade..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-134.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-134 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("69A69A"))) eq "aaaa"`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("69A69A"))) eq "aaaa" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1340.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1340.xq
deleted file mode 100644
index 63156088..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1340.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1340 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1341.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1341.xq
deleted file mode 100644
index 466cfb89..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1341.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1341 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1342.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1342.xq
deleted file mode 100644
index 039df9b0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1342.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1342 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1343.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1343.xq
deleted file mode 100644
index 840c13de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1343.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1343 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1344.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1344.xq
deleted file mode 100644
index 42204382..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1344.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1344 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1345.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1345.xq
deleted file mode 100644
index 922f2800..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1345.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1345 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1346.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1346.xq
deleted file mode 100644
index fdf35b5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1346.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1346 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1347.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1347.xq
deleted file mode 100644
index 1c89385a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1347.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1347 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1348.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1348.xq
deleted file mode 100644
index 63c1b2b1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1348.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1348 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1349.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1349.xq
deleted file mode 100644
index 95f97681..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1349.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1349 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-135.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-135.xq
deleted file mode 100644
index 89d4cd7a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-135.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-135 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("F43D1234ce8f"))) eq "9D0SNM6P"`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("F43D1234ce8f"))) eq "9D0SNM6P" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1350.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1350.xq
deleted file mode 100644
index ae334fc8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1350.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1350 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1351.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1351.xq
deleted file mode 100644
index ddd7c95a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1351.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1351 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1352.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1352.xq
deleted file mode 100644
index 3787cc71..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1352.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1352 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1353.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1353.xq
deleted file mode 100644
index a27a609a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1353.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1353 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1354.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1354.xq
deleted file mode 100644
index 09b4ddc8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1354.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1354 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1355.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1355.xq
deleted file mode 100644
index 23c5ada1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1355.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1355 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1356.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1356.xq
deleted file mode 100644
index 6c88fa14..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1356.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1356 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1357.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1357.xq
deleted file mode 100644
index 12b776a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1357.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1357 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1358.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1358.xq
deleted file mode 100644
index 7f3b8a44..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1358.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1358 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1359.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1359.xq
deleted file mode 100644
index 5745d3dc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1359.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1359 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-136.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-136.xq
deleted file mode 100644
index ef410ad3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-136.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-136 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("f0"))) eq "8A=="`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("f0"))) eq "8A==" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1360.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1360.xq
deleted file mode 100644
index 33cac9f9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1360.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1360 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:base64Binary is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:base64Binary
- ne
- xs:base64Binary("aaaa") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1361.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1361.xq
deleted file mode 100644
index c32ff98e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1361.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1361 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:base64Binary as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") castable as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1362.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1362.xq
deleted file mode 100644
index e8e47f81..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1362.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1362 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:hexBinary is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:hexBinary
- eq
- xs:hexBinary("0FB7") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1363.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1363.xq
deleted file mode 100644
index ad3edba0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1363.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1363 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:hexBinary as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") castable as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1364.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1364.xq
deleted file mode 100644
index f4259e37..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1364.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1364 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1365.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1365.xq
deleted file mode 100644
index 6739e75d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1365.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1365 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1366.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1366.xq
deleted file mode 100644
index 4e7d9ce3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1366.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1366 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:hexBinary to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:hexBinary("0FB7") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1367.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1367.xq
deleted file mode 100644
index 0093d888..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1367.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1367 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1368.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1368.xq
deleted file mode 100644
index af390691..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1368.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1368 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:hexBinary as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:hexBinary("0FB7") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1369.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1369.xq
deleted file mode 100644
index 547f76f9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1369.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1369 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:anyURI constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:anyURI() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-137.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-137.xq
deleted file mode 100644
index 6dd2ca52..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-137.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-137 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("ffaabbddcceeff0134f001d8ca9bc77899c83e6f7d"))) eq "/6q73czu/wE08AHYypvHeJnIPm99"`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("ffaabbddcceeff0134f001d8ca9bc77899c83e6f7d")))
- eq "/6q73czu/wE08AHYypvHeJnIPm99" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1370.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1370.xq
deleted file mode 100644
index b74eec12..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1370.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1370 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:anyURI constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:anyURI(
- "http://www.example.com/an/arbitrary/URI.ext"
- ,
-
- "http://www.example.com/an/arbitrary/URI.ext"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1371.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1371.xq
deleted file mode 100644
index e637cf4d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1371.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1371 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:anyURI constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:anyURI("http://www.example.com/an/arbitrary/URI.ext")), 3, 1) instance of xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1372.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1372.xq
deleted file mode 100644
index 4f4cc358..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1372.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1372 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:anyURI. :)
-(:*******************************************************:)
-xs:anyURI("
- http://www.example.com/an/arbitrary/URI.ext
- ")
- eq
- xs:anyURI("
- http://www.example.com/an/arbitrary/URI.ext
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1373.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1373.xq
deleted file mode 100644
index c3f67103..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1373.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1373 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An empty string is a valid lexical representation of xs:anyURI. :)
-(:*******************************************************:)
-xs:anyURI("")
- eq
- xs:anyURI("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1374.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1374.xq
deleted file mode 100644
index fb8f4a1e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1374.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1374 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "http://www.example.com/an/arbitrary/URI.ext" . :)
-(:*******************************************************:)
-xs:anyURI(xs:untypedAtomic(
- "http://www.example.com/an/arbitrary/URI.ext"
- )) eq xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1375.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1375.xq
deleted file mode 100644
index 44c611e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1375.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1375 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Applying fn:boolean() to a value of type xs:anyURI that has the lexical value ' "http://www.example.com/an/arbitrary/URI.ext" ' should result in the boolean value true. :)
-(:*******************************************************:)
-
- boolean(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1376.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1376.xq
deleted file mode 100644
index c62c1009..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1376.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1376 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1377.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1377.xq
deleted file mode 100644
index 70b1d595..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1377.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1377 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1378.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1378.xq
deleted file mode 100644
index 1a1d2207..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1378.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1378 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1379.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1379.xq
deleted file mode 100644
index 1d4e4931..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1379.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1379 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-138.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-138.xq
deleted file mode 100644
index 41e1a1b0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-138.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-138 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("ffff"))) eq "//8="`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("ffff"))) eq "//8=" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1380.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1380.xq
deleted file mode 100644
index 4e333da8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1380.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1380 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1381.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1381.xq
deleted file mode 100644
index 96e8a50a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1381.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1381 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1382.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1382.xq
deleted file mode 100644
index 436fd4be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1382.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1382 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1383.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1383.xq
deleted file mode 100644
index 4527fca5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1383.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1383 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1384.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1384.xq
deleted file mode 100644
index abf5c385..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1384.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1384 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1385.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1385.xq
deleted file mode 100644
index 47154171..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1385.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1385 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1386.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1386.xq
deleted file mode 100644
index a8338347..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1386.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1386 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1387.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1387.xq
deleted file mode 100644
index 8abd9d10..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1387.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1387 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1388.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1388.xq
deleted file mode 100644
index 93b8294f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1388.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1388 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1389.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1389.xq
deleted file mode 100644
index e1e8d4a0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1389.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1389 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-139.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-139.xq
deleted file mode 100644
index 1d72c466..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-139.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-139 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:base64Binary(xs:hexBinary("ffff34564321deac9876"))) eq "//80VkMh3qyYdg=="`. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary(xs:hexBinary("ffff34564321deac9876")))
- eq "//80VkMh3qyYdg==" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1390.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1390.xq
deleted file mode 100644
index ec1c910b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1390.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1390 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1391.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1391.xq
deleted file mode 100644
index 471bebd2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1391.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1391 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1392.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1392.xq
deleted file mode 100644
index a593487f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1392.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1392 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1393.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1393.xq
deleted file mode 100644
index 746ed28a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1393.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1393 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1394.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1394.xq
deleted file mode 100644
index c0774e5c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1394.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1394 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1395.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1395.xq
deleted file mode 100644
index ec774f49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1395.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1395 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1396.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1396.xq
deleted file mode 100644
index 70ccddd4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1396.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1396 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1397.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1397.xq
deleted file mode 100644
index 1b18f8df..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1397.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1397 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1398.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1398.xq
deleted file mode 100644
index 292f30a8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1398.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1398 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1399.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1399.xq
deleted file mode 100644
index 3e603cee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1399.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1399 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-14.xq
deleted file mode 100644
index 015fd51c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-14.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-14 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `'1' cast as xs:boolean eq true()`. :)
-(:*******************************************************:)
-'1' cast as xs:boolean eq true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-140.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-140.xq
deleted file mode 100644
index 05ca0e65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-140.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-140 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary(xs:base64Binary("Ow=="))) eq "3B"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary(xs:base64Binary("Ow=="))) eq "3B" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1400.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1400.xq
deleted file mode 100644
index a0a760fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1400.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1400 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1401.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1401.xq
deleted file mode 100644
index 8a29e050..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1401.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1401 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1402.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1402.xq
deleted file mode 100644
index 8ee37ced..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1402.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1402 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1403.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1403.xq
deleted file mode 100644
index b39bc42d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1403.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1403 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1404.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1404.xq
deleted file mode 100644
index b36082e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1404.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1404 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1405.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1405.xq
deleted file mode 100644
index 6a6816c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1405.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1405 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1406.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1406.xq
deleted file mode 100644
index 964c2a0d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1406.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1406 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1407.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1407.xq
deleted file mode 100644
index 3fe6c1e7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1407.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1407 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1408.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1408.xq
deleted file mode 100644
index 564dc405..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1408.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1408 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1409.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1409.xq
deleted file mode 100644
index 71d5754a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1409.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1409 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-141.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-141.xq
deleted file mode 100644
index 879ca333..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-141.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-141 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:hexBinary(xs:base64Binary("aaa a"))) eq "69A69A"`. :)
-(:*******************************************************:)
-xs:string(xs:hexBinary(xs:base64Binary("aaa a"))) eq "69A69A" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1410.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1410.xq
deleted file mode 100644
index 38aebc16..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1410.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1410 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1411.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1411.xq
deleted file mode 100644
index 89c8ba85..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1411.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1411 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1412.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1412.xq
deleted file mode 100644
index f77eb352..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1412.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1412 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1413.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1413.xq
deleted file mode 100644
index cba0e6c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1413.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1413 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1414.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1414.xq
deleted file mode 100644
index 31c4ce9a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1414.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1414 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1415.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1415.xq
deleted file mode 100644
index 2c2e2e3e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1415.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1415 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1416.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1416.xq
deleted file mode 100644
index 9e84c6ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1416.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1416 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:anyURI is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:anyURI
- eq
- xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1417.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1417.xq
deleted file mode 100644
index ef0c213a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1417.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1417 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:anyURI as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1418.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1418.xq
deleted file mode 100644
index 4f6b20e5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1418.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1418 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:anyURI to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1419.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1419.xq
deleted file mode 100644
index 5a846cb3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1419.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1419 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-142.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-142.xq
deleted file mode 100644
index 5d64d4c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-142.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-142 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: An empty string is a valid lexical representation for xs:base64Binary, and means 'no data. :)
-(:*******************************************************:)
-xs:string(xs:base64Binary("")) eq "" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1420.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1420.xq
deleted file mode 100644
index e47c7d15..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1420.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1420 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:anyURI as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/an/arbitrary/URI.ext") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1421.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1421.xq
deleted file mode 100644
index b2f3bf6f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1421.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1421 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:QName constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:QName() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1422.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1422.xq
deleted file mode 100644
index 80f45f24..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1422.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1422 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:QName constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:QName(
- "ncname"
- ,
-
- "ncname"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1423.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1423.xq
deleted file mode 100644
index 88d2e82e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1423.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1423 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:QName constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:QName("ncname")), 3, 1) instance of xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1424.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1424.xq
deleted file mode 100644
index 18e01934..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1424.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1424 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:QName. :)
-(:*******************************************************:)
-xs:QName("
- ncname
- ")
- eq
- xs:QName("
- ncname
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1425.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1425.xq
deleted file mode 100644
index 1ef03b1f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1425.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1425 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:QName. :)
-(:*******************************************************:)
-xs:QName("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1426.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1426.xq
deleted file mode 100644
index a79d258a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1426.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1426 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:QName, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:QName("ncname")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1427.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1427.xq
deleted file mode 100644
index e9832f9c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1427.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1427 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1428.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1428.xq
deleted file mode 100644
index b9c9c8d7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1428.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1428 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:QName("ncname") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1429.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1429.xq
deleted file mode 100644
index d28b8e58..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1429.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1429 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-143.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-143.xq
deleted file mode 100644
index d155e0b5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-143.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-143 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting where the source type typically cannot be determined statically. :)
-(:*******************************************************:)
-xs:hexBinary(remove(("3B", 1.1), 2) treat as xs:string) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1430.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1430.xq
deleted file mode 100644
index 53d1ff35..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1430.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1430 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:QName("ncname") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1431.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1431.xq
deleted file mode 100644
index 5ad169be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1431.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1431 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1432.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1432.xq
deleted file mode 100644
index 14e5d471..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1432.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1432 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1433.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1433.xq
deleted file mode 100644
index c14876a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1433.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1433 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1434.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1434.xq
deleted file mode 100644
index caa9ee5c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1434.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1434 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1435.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1435.xq
deleted file mode 100644
index e57dd39d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1435.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1435 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1436.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1436.xq
deleted file mode 100644
index 94a18305..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1436.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1436 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1437.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1437.xq
deleted file mode 100644
index 3f9bfcd6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1437.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1437 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1438.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1438.xq
deleted file mode 100644
index 6ca3dff4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1438.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1438 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1439.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1439.xq
deleted file mode 100644
index a9360c28..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1439.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1439 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-144.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-144.xq
deleted file mode 100644
index d527d1a3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-144.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-144 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(xs:decimal(remove((3e3, 1.1), 1))) eq 1.1`. :)
-(:*******************************************************:)
-(xs:decimal(remove((3e3, 1.1), 1))) eq 1.1 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1440.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1440.xq
deleted file mode 100644
index 249a5272..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1440.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1440 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1441.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1441.xq
deleted file mode 100644
index 0af6d6f1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1441.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1441 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1442.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1442.xq
deleted file mode 100644
index 52a94863..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1442.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1442 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1443.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1443.xq
deleted file mode 100644
index 046df197..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1443.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1443 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1444.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1444.xq
deleted file mode 100644
index f03827bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1444.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1444 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1445.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1445.xq
deleted file mode 100644
index 8919c38a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1445.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1445 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1446.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1446.xq
deleted file mode 100644
index d6b3abea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1446.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1446 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1447.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1447.xq
deleted file mode 100644
index 93e63e78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1447.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1447 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1448.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1448.xq
deleted file mode 100644
index 1c0ff5bf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1448.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1448 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1449.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1449.xq
deleted file mode 100644
index 4ad917bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1449.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1449 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-145.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-145.xq
deleted file mode 100644
index 6c4cf822..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-145.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-145 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting where the cardinality of the source value is wrong. :)
-(:*******************************************************:)
-xs:decimal(remove((1, 2, 3), 1)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1450.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1450.xq
deleted file mode 100644
index f2232b2c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1450.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1450 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1451.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1451.xq
deleted file mode 100644
index b808a941..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1451.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1451 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1452.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1452.xq
deleted file mode 100644
index c094746c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1452.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1452 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1453.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1453.xq
deleted file mode 100644
index 1ed8fdc1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1453.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1453 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1454.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1454.xq
deleted file mode 100644
index 37b11c3f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1454.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1454 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1455.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1455.xq
deleted file mode 100644
index 1a08921e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1455.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1455 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1456.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1456.xq
deleted file mode 100644
index 9d2273bb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1456.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1456 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1457.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1457.xq
deleted file mode 100644
index e49bfa59..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1457.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1457 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1458.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1458.xq
deleted file mode 100644
index bb3ca9c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1458.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1458 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1459.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1459.xq
deleted file mode 100644
index 38c1e4ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1459.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1459 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1460.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1460.xq
deleted file mode 100644
index 90e4217d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1460.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1460 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1461.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1461.xq
deleted file mode 100644
index c245d837..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1461.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1461 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1462.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1462.xq
deleted file mode 100644
index 451a2b38..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1462.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1462 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1463.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1463.xq
deleted file mode 100644
index 521e6fbf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1463.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1463 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1464.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1464.xq
deleted file mode 100644
index 58ac8baa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1464.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1464 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1465.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1465.xq
deleted file mode 100644
index 9c9314ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1465.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1465 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1466.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1466.xq
deleted file mode 100644
index dcc2846c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1466.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1466 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1467.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1467.xq
deleted file mode 100644
index 70af6235..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1467.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1467 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting from xs:QName to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:QName("ncname") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1468.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1468.xq
deleted file mode 100644
index 2fe85230..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1468.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1468 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1469.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1469.xq
deleted file mode 100644
index 6b2172ec..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1469.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1469 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as source type and xs:QName as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:QName("ncname") castable as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1470.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1470.xq
deleted file mode 100644
index 3c02a524..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1470.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1470 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: 'castable as' involving xs:QName as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:QName("ncname") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1471.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1471.xq
deleted file mode 100644
index f9c47bcd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1471.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1471 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:NOTATION constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:NOTATION() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1472.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1472.xq
deleted file mode 100644
index 1d6156bb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1472.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1472 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: The xs:NOTATION constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:NOTATION(
- "prefix:local"
- ,
-
- "prefix:local"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1473.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1473.xq
deleted file mode 100644
index b2df35ec..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1473.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1473 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:untypedAtomic) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1474.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1474.xq
deleted file mode 100644
index 8dae8f5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1474.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1474 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:string) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1475.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1475.xq
deleted file mode 100644
index e21ed9a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1475.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1475 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1476.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1476.xq
deleted file mode 100644
index 5a2170fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1476.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1476 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1477.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1477.xq
deleted file mode 100644
index 511ed5f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1477.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1477 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1478.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1478.xq
deleted file mode 100644
index 5301da4b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1478.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1478 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1479.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1479.xq
deleted file mode 100644
index 8efe1b80..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1479.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1479 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-148.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-148.xq
deleted file mode 100644
index ec350548..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-148.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-148 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A preceding plus sign('+') is disallowed for xs:duration. :)
-(:*******************************************************:)
-xs:duration("+P1Y2M123DT10H30M99S") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1480.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1480.xq
deleted file mode 100644
index 05401118..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1480.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1480 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1481.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1481.xq
deleted file mode 100644
index aff61daf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1481.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1481 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1482.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1482.xq
deleted file mode 100644
index c76ad179..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1482.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1482 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1483.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1483.xq
deleted file mode 100644
index ee7c0d05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1483.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1483 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1484.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1484.xq
deleted file mode 100644
index ca6d9fa3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1484.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1484 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1485.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1485.xq
deleted file mode 100644
index 2d80c48a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1485.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1485 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1486.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1486.xq
deleted file mode 100644
index 06d815cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1486.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1486 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1487.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1487.xq
deleted file mode 100644
index e1546598..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1487.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1487 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1488.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1488.xq
deleted file mode 100644
index bf4933e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1488.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1488 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1489.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1489.xq
deleted file mode 100644
index 291b5726..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1489.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1489 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-149.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-149.xq
deleted file mode 100644
index 2f6d7830..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-149.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-149 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: No zone offset is allowed for xs:duration. :)
-(:*******************************************************:)
-xs:duration("P1Y2M123DT10H30M99S+08:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1490.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1490.xq
deleted file mode 100644
index 803f93ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1490.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1490 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1491.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1491.xq
deleted file mode 100644
index 779ea9ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1491.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1491 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1492.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1492.xq
deleted file mode 100644
index 56617822..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1492.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1492 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1493.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1493.xq
deleted file mode 100644
index cfdaff64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1493.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1493 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1494.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1494.xq
deleted file mode 100644
index ed0e46fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1494.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1494 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1495.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1495.xq
deleted file mode 100644
index 4422a3dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-1495.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-1495 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: No constructor function exists for xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:NOTATION("prefix:local") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-15.xq
deleted file mode 100644
index f6fc2268..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-15.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-15 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `'true' cast as xs:boolean eq true()`. :)
-(:*******************************************************:)
-'true' cast as xs:boolean eq true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-150.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-150.xq
deleted file mode 100644
index 64706827..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-150.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-150 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A preceding 'P' must always exist in a xs:duration value. :)
-(:*******************************************************:)
-xs:duration("1Y2M123DT10H30M99S") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-151.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-151.xq
deleted file mode 100644
index 5d953d53..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-151.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-151 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: At least one number and its designator must be present in a xs:duration value. :)
-(:*******************************************************:)
-xs:duration("P") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-152.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-152.xq
deleted file mode 100644
index ce3bcaaa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-152.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-152 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: At least one number and its designator must be present in a xs:duration value, a minus sign is insufficient. :)
-(:*******************************************************:)
-xs:duration("-P") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-153.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-153.xq
deleted file mode 100644
index 6064302d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-153.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-153 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A 'T' separator in a xs:duration must be followed by time components. :)
-(:*******************************************************:)
-xs:duration("P1Y24MT") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-154.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-154.xq
deleted file mode 100644
index 8587a4b8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-154.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-154 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'P24H' is an invalid lexical representation for xs:duration. :)
-(:*******************************************************:)
-xs:duration("P24H") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-155.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-155.xq
deleted file mode 100644
index 0639ab4c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-155.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-155 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that when casting xs:duration to xs:string, preceding zeros are handled properly. :)
-(:*******************************************************:)
-xs:string(xs:duration("P0010Y0010M0010DT0010H0010M0010S"))
- eq "P10Y10M10DT10H10M10S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-156.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-156.xq
deleted file mode 100644
index ce726a6d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-156.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-156 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that a negative xs:duration is properly serialized when cast to xs:string. :)
-(:*******************************************************:)
-xs:string(xs:duration("-P0010DT0010H0010M0010S"))
- eq "-P10DT10H10M10S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-157.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-157.xq
deleted file mode 100644
index 90b019a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-157.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-157 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that when casting xs:duration to xs:string, that empty fields are properly serialized. :)
-(:*******************************************************:)
-xs:string(xs:duration("P0Y0M0DT00H00M00.000S")) eq "PT0S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-158.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-158.xq
deleted file mode 100644
index 64493726..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-158.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-158 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that when casting xs:duration to xs:string, that empty components are handled properly. :)
-(:*******************************************************:)
-xs:string(xs:duration("-PT8H23M0S")) eq "-PT8H23M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-159.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-159.xq
deleted file mode 100644
index 691ea2e0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-159.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-159 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting a xs:duration with zeroed time components to xs:string. :)
-(:*******************************************************:)
-xs:string(xs:duration("-P2000Y11M5DT0H0M0.000S")) eq "-P2000Y11M5D" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-16.xq
deleted file mode 100644
index ff45a781..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-16.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-16 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `'false' cast as xs:boolean eq false()`. :)
-(:*******************************************************:)
-'false' cast as xs:boolean eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-160.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-160.xq
deleted file mode 100644
index 510a8ca2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-160.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-160 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The canonical lexical representation for the xs:duration value P365D is 'P365D'. :)
-(:*******************************************************:)
-xs:string(xs:duration("P365D")) eq "P365D" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-161.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-161.xq
deleted file mode 100644
index 98677663..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-161.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-161 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The canonical lexical representation for the xs:duration value P12M is 'P1Y'. :)
-(:*******************************************************:)
-xs:string(xs:duration("P12M")) eq "P1Y" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-162.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-162.xq
deleted file mode 100644
index e351549a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-162.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-162 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The canonical lexical representation for the xs:duration value P31D is 'P31D'. :)
-(:*******************************************************:)
-xs:string(xs:duration("P31D")) eq "P31D" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-163.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-163.xq
deleted file mode 100644
index 42df9bb9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-163.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-163 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The canonical lexical representation for the xs:duration value P3Y0M is 'P3Y'. :)
-(:*******************************************************:)
-xs:string(xs:yearMonthDuration("P3Y0M")) eq "P3Y" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-164.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-164.xq
deleted file mode 100644
index 6f781f9b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-164.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-164 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Test that a xs:duration value with a small second component is serialized properly. :)
-(:*******************************************************:)
-xs:string(xs:duration("P31DT3H2M10.001S"))
- eq "P31DT3H2M10.001S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-165.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-165.xq
deleted file mode 100644
index bbd0ab0f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-165.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-165 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The canonical form of the xs:duration value -PT0S is PT0S. :)
-(:*******************************************************:)
-xs:string(xs:duration("-PT0S")) eq "PT0S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-166.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-166.xq
deleted file mode 100644
index 735d2a9c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-166.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-166 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting xs:dayTimeDuration to xs:duration. :)
-(:*******************************************************:)
-
- xs:string(xs:duration(xs:dayTimeDuration("P31DT3H2M10.001S")))
- eq "P31DT3H2M10.001S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-167.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-167.xq
deleted file mode 100644
index 2c6dc549..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-167.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-167 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting xs:yearMonthDuration to xs:duration. :)
-(:*******************************************************:)
-
- xs:string(xs:duration(xs:yearMonthDuration("P543Y456M")))
- eq "P581Y" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-168.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-168.xq
deleted file mode 100644
index 18af9607..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-168.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-168 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting a negative xs:dayTimeDuration to xs:duration. :)
-(:*******************************************************:)
-
- xs:string(xs:duration(xs:dayTimeDuration("-P31DT3H2M10.001S")))
- eq "-P31DT3H2M10.001S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-169.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-169.xq
deleted file mode 100644
index 6c0c25ce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-169.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-169 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting a negative xs:yearMonthDuration to xs:duration. :)
-(:*******************************************************:)
-
- xs:string(xs:duration(xs:yearMonthDuration("-P543Y456M")))
- eq "-P581Y" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-17.xq
deleted file mode 100644
index 25bd0026..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-17.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-17 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `'0' cast as xs:boolean eq false()`. :)
-(:*******************************************************:)
-'0' cast as xs:boolean eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-170.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-170.xq
deleted file mode 100644
index d2dd14c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-170.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-170 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A preceding plus sign('+') is disallowed for xs:dayTimeDuration. :)
-(:*******************************************************:)
-xs:dayTimeDuration("+P3DT10H") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-171.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-171.xq
deleted file mode 100644
index 56b9b3e2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-171.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-171 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: No zone offset is allowed for xs:dayTimeDuration. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT10H+08:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-172.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-172.xq
deleted file mode 100644
index aa9ae2d0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-172.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-172 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A preceding 'P' must always exist in a xs:dayTimeDuration value. :)
-(:*******************************************************:)
-xs:dayTimeDuration("3DT10H") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-173.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-173.xq
deleted file mode 100644
index 6d2ada5c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-173.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-173 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: At least one number and its designator must be present in a xs:dayTimeDuration value. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-174.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-174.xq
deleted file mode 100644
index 5b8aad85..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-174.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-174 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: At least one number and its designator must be present in a xs:dayTimeDuration value, a minus sign is insufficient. :)
-(:*******************************************************:)
-xs:dayTimeDuration("-P") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-175.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-175.xq
deleted file mode 100644
index e66e581a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-175.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-175 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A 'T' separator in a xs:dayTimeDuration must be followed by time components. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P1DT") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-176.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-176.xq
deleted file mode 100644
index e074b253..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-176.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-176 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that when casting xs:dayTimeDuration to xs:string, that empty fields are properly serialized. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("P0DT00H00M00.000S")) eq "PT0S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-177.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-177.xq
deleted file mode 100644
index bae2e0cc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-177.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-177 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'P1Y12M1D' is an invalid lexical representation for xs:dayTimeDuration. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P1Y12M1D") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-178.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-178.xq
deleted file mode 100644
index 91906304..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-178.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-178 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'P24M1D' is an invalid lexical representation for xs:dayTimeDuration. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P24M1D") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-179.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-179.xq
deleted file mode 100644
index 1f74f9e7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-179.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-179 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'PDT3H2M10.001S' is an invalid lexical representation for xs:dayTimeDuration. :)
-(:*******************************************************:)
-xs:dayTimeDuration("PDT3H2M10.001S") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-18.xq
deleted file mode 100644
index bf172ba2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-18.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-18 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `false() cast as xs:boolean eq false()`. :)
-(:*******************************************************:)
-false() cast as xs:boolean eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-180.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-180.xq
deleted file mode 100644
index 594dcc16..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-180.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-180 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that when casting xs:dayTimeDuration to xs:string, that preceding zeros are handled properly. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("P0010DT0010H0010M0010S"))
- eq "P10DT10H10M10S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-181.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-181.xq
deleted file mode 100644
index ada95034..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-181.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-181 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that a negative xs:dayTimeDuration is properly serialized when cast to xs:string. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("-P0010DT0010H0010M0010S"))
- eq "-P10DT10H10M10S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-182.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-182.xq
deleted file mode 100644
index e0aeede9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-182.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-182 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that when casting xs:dayTimeDuration to xs:string, that empty components are handled properly. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("-PT8H23M0S")) eq "-PT8H23M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-183.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-183.xq
deleted file mode 100644
index 8ce26a66..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-183.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-183 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting a xs:duration with zeroed time components to xs:string. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("-P5DT0H0M0.000S")) eq "-P5D" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-184.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-184.xq
deleted file mode 100644
index 6a4e8041..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-184.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-184 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Test that a xs:dayTimeDuration value with a large day component is serialized properly. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("P9876DT1M")) eq "P9876DT1M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-185.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-185.xq
deleted file mode 100644
index 71cabbcb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-185.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-185 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Test that a xs:dayTimeDuration value with a large hour component is serialized properly. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("PT9876H1M")) eq "P411DT12H1M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-186.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-186.xq
deleted file mode 100644
index 35a6c2c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-186.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-186 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Test that a xs:dayTimeDuration value with a large minute component is serialized properly. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("PT6000M")) eq "P4DT4H" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-187.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-187.xq
deleted file mode 100644
index 4debdda0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-187.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-187 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Test that a xs:dayTimeDuration value with a large second component is serialized properly. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("PT1M1231.432S")) eq "PT21M31.432S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-188.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-188.xq
deleted file mode 100644
index af366f52..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-188.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-188 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Test that a xs:dayTimeDuration value with a small second component is serialized properly. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("P31DT3H2M10.001S"))
- eq "P31DT3H2M10.001S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-189.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-189.xq
deleted file mode 100644
index 1b48d59f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-189.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-189 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The canonical form of the xs:dayTimeDuration value -PT0S is PT0S. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("-PT0S")) eq "PT0S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-19.xq
deleted file mode 100644
index d731104d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-19.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-19 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(true() cast as xs:boolean eq false())`. :)
-(:*******************************************************:)
-not(true() cast as xs:boolean eq false()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-190.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-190.xq
deleted file mode 100644
index f6922390..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-190.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-190 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting xs:duration to xs:dayTimeDuration. :)
-(:*******************************************************:)
-
- xs:string(xs:dayTimeDuration(xs:duration("P3Y0M31DT3H2M10.001S")))
- eq "P31DT3H2M10.001S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-191.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-191.xq
deleted file mode 100644
index fc196bc1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-191.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-191 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting xs:yearMonthDuration to xs:dayTimeDuration. :)
-(:*******************************************************:)
-
- xs:string(xs:dayTimeDuration(xs:yearMonthDuration("P543Y456M")))
- eq "PT0S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-192.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-192.xq
deleted file mode 100644
index 39cebe52..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-192.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-192 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting a negative xs:duration to xs:dayTimeDuration. :)
-(:*******************************************************:)
-
- xs:string(xs:dayTimeDuration(xs:duration("-P3Y0M31DT3H2M10.001S")))
- eq "-P31DT3H2M10.001S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-193.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-193.xq
deleted file mode 100644
index 18676a87..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-193.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-193 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting a negative xs:yearMonthDuration to xs:dayTimeDuration. :)
-(:*******************************************************:)
-
- xs:string(xs:dayTimeDuration(xs:yearMonthDuration("-P543Y456M")))
- eq "PT0S" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-194.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-194.xq
deleted file mode 100644
index 3f92e385..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-194.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-194 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The canonical lexical representation for the xs:dayTimeDuration value P3D is 'P3D'. :)
-(:*******************************************************:)
-xs:string(xs:dayTimeDuration("P3D")) eq "P3D" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-195.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-195.xq
deleted file mode 100644
index 13100ed0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-195.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-195 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A preceding plus sign('+') is disallowed for xs:yearMonthDuration. :)
-(:*******************************************************:)
-xs:yearMonthDuration("+P20Y15M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-196.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-196.xq
deleted file mode 100644
index e0b376a2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-196.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-196 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: No zone offset is allowed for xs:yearMonthDuration. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P20Y15M+08:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-197.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-197.xq
deleted file mode 100644
index b089b1e8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-197.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-197 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A preceding 'P' must always exist in a xs:yearMonthDuration value. :)
-(:*******************************************************:)
-xs:yearMonthDuration("20Y15M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-198.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-198.xq
deleted file mode 100644
index 350f8775..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-198.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-198 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: At least one number and its designator must be present in a xs:yearMonthDuration value. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-199.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-199.xq
deleted file mode 100644
index 749d27dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-199.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-199 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: At least one number and its designator must be present in a xs:yearMonthDuration value, a minus sign is insufficient. :)
-(:*******************************************************:)
-xs:yearMonthDuration("-P") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-2.xq
deleted file mode 100644
index e6fe5a1b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-2.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Syntax: only ? is allowed as occurence indicator in 'cast as' expressions. :)
-(:*******************************************************:)
-'string' cast as xs:string+ \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-20.xq
deleted file mode 100644
index b38582c1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-20.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-20 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:double(3)) eq true()`. :)
-(:*******************************************************:)
-xs:boolean(xs:double(3)) eq true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-200.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-200.xq
deleted file mode 100644
index f8faf231..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-200.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-200 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A 'T' separator in a xs:yearMonthDuration is not allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y24MT") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-201.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-201.xq
deleted file mode 100644
index 6e637f8f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-201.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-201 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'P731D' is an invalid lexical representation for xs:yearMonthDuration. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P731D") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-202.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-202.xq
deleted file mode 100644
index 3b0b7530..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-202.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-202 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '-P3' is an invalid lexical representation for xs:yearMonthDuration. :)
-(:*******************************************************:)
-xs:yearMonthDuration("-P3") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-203.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-203.xq
deleted file mode 100644
index 7a2a16b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-203.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-203 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that when casting xs:yearMonthDuration to xs:string, that preceding zeros are handled properly. :)
-(:*******************************************************:)
-xs:string(xs:yearMonthDuration("P0010Y0010M")) eq "P10Y10M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-204.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-204.xq
deleted file mode 100644
index 14faee64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-204.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-204 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that a negative xs:yearMonthDuration is properly serialized when cast to xs:string. :)
-(:*******************************************************:)
-xs:string(xs:yearMonthDuration("-P0010Y0010M")) eq "-P10Y10M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-205.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-205.xq
deleted file mode 100644
index ec08b104..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-205.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-205 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure that when casting xs:yearMonthDuration to xs:string, that empty fields are properly serialized. :)
-(:*******************************************************:)
-xs:string(xs:yearMonthDuration("P0Y0M")) eq "P0M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-206.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-206.xq
deleted file mode 100644
index 9038ad68..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-206.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-206 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Test that a xs:yearMonthDuration value with a large year component is serialized properly. :)
-(:*******************************************************:)
-xs:string(xs:yearMonthDuration("P2Y323M")) eq "P28Y11M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-207.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-207.xq
deleted file mode 100644
index 2981c868..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-207.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-207 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Test that a xs:yearMonthDuration value with a large year and month component is serialized properly. :)
-(:*******************************************************:)
-xs:string(xs:yearMonthDuration("-P543Y456M")) eq "-P581Y" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-208.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-208.xq
deleted file mode 100644
index 5b80a6c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-208.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-208 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The canonical form of the xs:yearMonthDuration value -P0M is P0M. :)
-(:*******************************************************:)
-xs:string(xs:yearMonthDuration("-P0M")) eq "P0M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-209.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-209.xq
deleted file mode 100644
index 9f37768c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-209.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-209 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting xs:duration to xs:yearMonthDuration. :)
-(:*******************************************************:)
-
- xs:string(xs:yearMonthDuration(xs:duration("P3Y0M31DT3H2M10.001S")))
- eq "P3Y" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-21.xq
deleted file mode 100644
index 0dd4f3b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-21.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-21 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:string(1)) eq true()`. :)
-(:*******************************************************:)
-xs:boolean(xs:string(1)) eq true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-210.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-210.xq
deleted file mode 100644
index 8d05efc7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-210.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-210 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting xs:dayTimeDuration to xs:yearMonthDuration. :)
-(:*******************************************************:)
-
- xs:string(xs:yearMonthDuration(xs:dayTimeDuration("P31DT3H2M10.001S")))
- eq "P0M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-211.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-211.xq
deleted file mode 100644
index 1dfd90e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-211.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-211 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting a negative xs:duration to xs:yearMonthDuration. :)
-(:*******************************************************:)
-
- xs:string(xs:yearMonthDuration(xs:duration("-P3Y0M31DT3H2M10.001S")))
- eq "-P3Y" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-212.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-212.xq
deleted file mode 100644
index 4218ddf4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-212.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-212 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Simple test of casting a negative xs:dayTimeDuration to xs:yearMonthDuration. :)
-(:*******************************************************:)
-
- xs:string(xs:yearMonthDuration(xs:dayTimeDuration("-P31DT3H2M10.001S")))
- eq "P0M" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-215.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-215.xq
deleted file mode 100644
index cbbd2292..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-215.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-215 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("1")`. :)
-(:*******************************************************:)
-xs:gYear("1") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-216.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-216.xq
deleted file mode 100644
index 9166ca2e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-216.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-216 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("12")`. :)
-(:*******************************************************:)
-xs:gYear("12") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-217.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-217.xq
deleted file mode 100644
index 4ad11ccb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-217.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-217 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("867")`. :)
-(:*******************************************************:)
-xs:gYear("867") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-218.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-218.xq
deleted file mode 100644
index 34478c9b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-218.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-218 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("+1999")`. :)
-(:*******************************************************:)
-xs:gYear("+1999") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-219.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-219.xq
deleted file mode 100644
index 6da3fdbd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-219.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-219 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("+1999")`. :)
-(:*******************************************************:)
-xs:gYear("+1999") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-22.xq
deleted file mode 100644
index 6e723350..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-22.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-22 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:integer(3)) eq true()`. :)
-(:*******************************************************:)
-xs:boolean(xs:integer(3)) eq true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-220.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-220.xq
deleted file mode 100644
index 7f242691..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-220.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-220 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("+0000")`. :)
-(:*******************************************************:)
-xs:gYear("+0000") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-221.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-221.xq
deleted file mode 100644
index 73504437..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-221.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-221 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("1111-")`. :)
-(:*******************************************************:)
-xs:gYear("1111-") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-222.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-222.xq
deleted file mode 100644
index 807aea7e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-222.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-222 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("1111a")`. :)
-(:*******************************************************:)
-xs:gYear("1111a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-223.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-223.xq
deleted file mode 100644
index d41a810b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-223.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-223 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("a1111")`. :)
-(:*******************************************************:)
-xs:gYear("a1111") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-224.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-224.xq
deleted file mode 100644
index ef59eac0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-224.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-224 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("1 111")`. :)
-(:*******************************************************:)
-xs:gYear("1 111") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-225.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-225.xq
deleted file mode 100644
index fefb82cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-225.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-225 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("1111 Z")`. :)
-(:*******************************************************:)
-xs:gYear("1111 Z") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-226.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-226.xq
deleted file mode 100644
index 98083a5e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-226.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-226 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:gYear("1111 Z")`. :)
-(:*******************************************************:)
-xs:gYear("1111 Z") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-227.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-227.xq
deleted file mode 100644
index d2eac926..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-227.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-227 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYear: the hour component cannot be -15. :)
-(:*******************************************************:)
-xs:gYear("1956-15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-228.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-228.xq
deleted file mode 100644
index 199e96b8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-228.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-228 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYear: the hour component cannot be +15. :)
-(:*******************************************************:)
-xs:gYear("1956+15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-229.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-229.xq
deleted file mode 100644
index c400bbe2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-229.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-229 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYear: the minute component cannot be +60. :)
-(:*******************************************************:)
-xs:gYear("1956+10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-23.xq
deleted file mode 100644
index 06238a1b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-23.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-23 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:decimal(3)) eq true()`. :)
-(:*******************************************************:)
-xs:boolean(xs:decimal(3)) eq true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-230.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-230.xq
deleted file mode 100644
index a9ddfb00..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-230.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-230 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYear: the minute component cannot be -60. :)
-(:*******************************************************:)
-xs:gYear("1956-10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-231.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-231.xq
deleted file mode 100644
index 189b0984..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-231.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-231 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '02004' is an invalid lexical representation for xs:gYear. :)
-(:*******************************************************:)
-xs:gYear("02004") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-232.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-232.xq
deleted file mode 100644
index aa04bb9e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-232.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-232 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYear: the minute field must always be present. :)
-(:*******************************************************:)
-xs:gYear("1956-10") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-233.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-233.xq
deleted file mode 100644
index b772e9c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-233.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-233 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gYear to xs:string, with timezone '-00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gYear("1999-00:00")) eq "1999Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-234.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-234.xq
deleted file mode 100644
index 358ba6c2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-234.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-234 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gYear to xs:string, with timezone '+00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gYear("1999+00:00")) eq "1999Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-235.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-235.xq
deleted file mode 100644
index d148ef05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-235.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-235 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gYear to xs:string, with timezone 'Z' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gYear("1999Z")) eq "1999Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-236.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-236.xq
deleted file mode 100644
index 69214c83..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-236.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-236 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '10' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("10") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-237.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-237.xq
deleted file mode 100644
index a5a1bf99..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-237.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-237 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '-01' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-238.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-238.xq
deleted file mode 100644
index c267e3f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-238.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-238 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '---321' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("---321") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-239.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-239.xq
deleted file mode 100644
index 1e03759c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-239.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-239 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '--01' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("--01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-24.xq
deleted file mode 100644
index ab2d55fa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-24.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-24 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:double(0)) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(xs:double(0)) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-240.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-240.xq
deleted file mode 100644
index d61376b0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-240.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-240 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'E---01' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("E---01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-241.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-241.xq
deleted file mode 100644
index e02df1d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-241.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-241 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '---01E' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("---01E") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-242.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-242.xq
deleted file mode 100644
index 32095178..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-242.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-242 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '---01-' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("---01-") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-243.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-243.xq
deleted file mode 100644
index 17dfbbef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-243.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-243 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '---001' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("---001") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-244.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-244.xq
deleted file mode 100644
index a86b0af7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-244.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-244 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '---32' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("---32") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-245.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-245.xq
deleted file mode 100644
index 39838ceb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-245.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-245 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '---00' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("---00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-246.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-246.xq
deleted file mode 100644
index 7a3f15be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-246.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-246 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '---8' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("+--08") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-247.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-247.xq
deleted file mode 100644
index e7b7755a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-247.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-247 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '+--08' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("+--08") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-248.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-248.xq
deleted file mode 100644
index 3aa23363..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-248.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-248 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '+---08' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("+---08") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-249.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-249.xq
deleted file mode 100644
index 72bb9283..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-249.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-249 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '---08 Z' is an invalid lexical representation for xs:gDay. :)
-(:*******************************************************:)
-xs:gDay("---08 Z") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-25.xq
deleted file mode 100644
index ea658906..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-25.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-25 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:string(0)) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(xs:string(0)) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-250.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-250.xq
deleted file mode 100644
index 384f2ab3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-250.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-250 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gDay: the hour component cannot be -15. :)
-(:*******************************************************:)
-xs:gDay("---08-15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-251.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-251.xq
deleted file mode 100644
index abd62ea5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-251.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-251 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gDay: the hour component cannot be +15. :)
-(:*******************************************************:)
-xs:gDay("---08+15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-252.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-252.xq
deleted file mode 100644
index 7edb5fd7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-252.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-252 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gDay: the minute component cannot be +60. :)
-(:*******************************************************:)
-xs:gDay("---08+10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-253.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-253.xq
deleted file mode 100644
index 0b998384..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-253.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-253 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gDay: the minute component cannot be -60. :)
-(:*******************************************************:)
-xs:gDay("---08-10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-254.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-254.xq
deleted file mode 100644
index a6e5d261..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-254.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-254 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gDay: the minute field must always be present. :)
-(:*******************************************************:)
-xs:gDay("---08-10") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-255.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-255.xq
deleted file mode 100644
index 0cb03023..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-255.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-255 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gDay to xs:string, with timezone '-00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gDay("---01-00:00")) eq "---01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-256.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-256.xq
deleted file mode 100644
index d5e31e8e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-256.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-256 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gDay to xs:string, with timezone '+00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gDay("---01+00:00")) eq "---01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-257.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-257.xq
deleted file mode 100644
index 89f2d38b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-257.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-257 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gDay to xs:string, with timezone 'Z' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gDay("---01Z")) eq "---01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-258.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-258.xq
deleted file mode 100644
index ff813b2a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-258.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-258 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '-01' is an invalid lexical representation for xs:gMonth. :)
-(:*******************************************************:)
-xs:gMonth("-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-259.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-259.xq
deleted file mode 100644
index 9254112e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-259.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-259 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '---01' is an invalid lexical representation for xs:gMonth. :)
-(:*******************************************************:)
-xs:gMonth("---01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-26.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-26.xq
deleted file mode 100644
index 13a5aa9d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-26.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-26 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:integer(0)) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(xs:integer(0)) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-260.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-260.xq
deleted file mode 100644
index 737250eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-260.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-260 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '+--01' is an invalid lexical representation for xs:gMonth. :)
-(:*******************************************************:)
-xs:gMonth("+--01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-261.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-261.xq
deleted file mode 100644
index 807e0e4c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-261.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-261 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '--13' is an invalid lexical representation for xs:gMonth. :)
-(:*******************************************************:)
-xs:gMonth("--13") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-262.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-262.xq
deleted file mode 100644
index fb1e9648..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-262.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-262 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '--431' is an invalid lexical representation for xs:gMonth. :)
-(:*******************************************************:)
-xs:gMonth("--431") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-263.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-263.xq
deleted file mode 100644
index 3d3bbccb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-263.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-263 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '--11-' is an invalid lexical representation for xs:gMonth. :)
-(:*******************************************************:)
-xs:gMonth("--11-") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-264.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-264.xq
deleted file mode 100644
index e1a4a78f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-264.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-264 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '--00' is an invalid lexical representation for xs:gMonth. :)
-(:*******************************************************:)
-xs:gMonth("--00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-265.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-265.xq
deleted file mode 100644
index e4bb727d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-265.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-265 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonth: the hour component cannot be -15. :)
-(:*******************************************************:)
-xs:gMonth("--08-15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-266.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-266.xq
deleted file mode 100644
index 9110f076..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-266.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-266 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonth: the hour component cannot be +15. :)
-(:*******************************************************:)
-xs:gMonth("--08+15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-267.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-267.xq
deleted file mode 100644
index d9183d2f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-267.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-267 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonth: the minute component cannot be +60. :)
-(:*******************************************************:)
-xs:gMonth("--08+10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-268.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-268.xq
deleted file mode 100644
index a1571c8d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-268.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-268 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonth: the minute component cannot be -60. :)
-(:*******************************************************:)
-xs:gMonth("--08-10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-269.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-269.xq
deleted file mode 100644
index 8a4eba4d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-269.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-269 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonth: the minute field must always be present. :)
-(:*******************************************************:)
-xs:gMonth("--08-10") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-27.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-27.xq
deleted file mode 100644
index 08a56c7b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-27.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-27 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:decimal(0)) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(xs:decimal(0)) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-270.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-270.xq
deleted file mode 100644
index 3b4d0d6c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-270.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-270 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gMonth to xs:string, with timezone '-00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gMonth("--01-00:00")) eq "--01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-271.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-271.xq
deleted file mode 100644
index 4058f143..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-271.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-271 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gMonth to xs:string, with timezone '+00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gMonth("--01+00:00")) eq "--01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-272.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-272.xq
deleted file mode 100644
index 169b38de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-272.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-272 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gMonth to xs:string, with timezone 'Z' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gMonth("--01Z")) eq "--01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-273.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-273.xq
deleted file mode 100644
index ad2327af..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-273.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-273 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '--1999-12' is an invalid lexical representation for xs:gYearMonth. :)
-(:*******************************************************:)
-xs:gYearMonth("--1999-12") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-274.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-274.xq
deleted file mode 100644
index 50012053..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-274.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-274 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '+1999-12' is an invalid lexical representation for xs:gYearMonth. :)
-(:*******************************************************:)
-xs:gYearMonth("+1999-12") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-275.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-275.xq
deleted file mode 100644
index c0d97de8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-275.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-275 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '1999-12-' is an invalid lexical representation for xs:gYearMonth. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-12-") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-276.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-276.xq
deleted file mode 100644
index 2c68ce49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-276.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-276 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '1999--12' is an invalid lexical representation for xs:gYearMonth. :)
-(:*******************************************************:)
-xs:gYearMonth("1999--12") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-277.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-277.xq
deleted file mode 100644
index 75672f64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-277.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-277 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '1999-13' is an invalid lexical representation for xs:gYearMonth. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-13") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-278.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-278.xq
deleted file mode 100644
index e359f885..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-278.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-278 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '1999-00' is an invalid lexical representation for xs:gYearMonth. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-279.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-279.xq
deleted file mode 100644
index 97eb3cc2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-279.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-279 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '02004-08' is an invalid lexical representation for xs:gYearMonth. :)
-(:*******************************************************:)
-xs:gYearMonth("02004-08") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-28.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-28.xq
deleted file mode 100644
index 7e9b4dc6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-28.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-28 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:decimal(0.0)) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(xs:decimal(0.0)) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-280.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-280.xq
deleted file mode 100644
index e9eaf832..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-280.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-280 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYearMonth: the minute field must always be present. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-08-10") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-281.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-281.xq
deleted file mode 100644
index ad4f2645..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-281.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-281 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYearMonth: the hour component cannot be -15. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-01-15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-282.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-282.xq
deleted file mode 100644
index bf563455..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-282.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-282 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYearMonth: the hour component cannot be +15. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-01+15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-283.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-283.xq
deleted file mode 100644
index 28447f02..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-283.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-283 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYearMonth: the minute component cannot be +60. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-01+10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-284.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-284.xq
deleted file mode 100644
index 14fe8e57..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-284.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-284 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Testing timezone field in xs:gYearMonth: the minute component cannot be -60. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-01-10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-285.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-285.xq
deleted file mode 100644
index 0c1f76f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-285.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-285 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gYearMonth to xs:string, with timezone '-00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gYearMonth("1999-01-00:00")) eq "1999-01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-286.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-286.xq
deleted file mode 100644
index 477d3b57..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-286.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-286 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gYearMonth to xs:string, with timezone '+00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gYearMonth("1999-01+00:00")) eq "1999-01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-287.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-287.xq
deleted file mode 100644
index 22c03d61..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-287.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-287 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Ensure casting xs:gYearMonth to xs:string, with timezone 'Z' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gYearMonth("1999-01Z")) eq "1999-01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-288.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-288.xq
deleted file mode 100644
index a1d1ca5f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-288.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-288 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: '-01-12' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("-01-12") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-289.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-289.xq
deleted file mode 100644
index f68e6a7c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-289.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-289 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '+--01-12' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("+--01-12") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-29.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-29.xq
deleted file mode 100644
index f23985f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-29.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-29 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(+0) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(+0) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-290.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-290.xq
deleted file mode 100644
index 25088349..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-290.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-290 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '01-12-' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("01-12-") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-291.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-291.xq
deleted file mode 100644
index 09feb8d9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-291.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-291 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '--01--12' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("--01--12") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-292.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-292.xq
deleted file mode 100644
index f48e38b0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-292.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-292 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '--01-00' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("--01-00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-293.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-293.xq
deleted file mode 100644
index 4a173e63..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-293.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-293 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '--00-01' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("--00-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-294.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-294.xq
deleted file mode 100644
index eb3900e7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-294.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-294 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '--13-01' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("--13-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-295.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-295.xq
deleted file mode 100644
index ed823040..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-295.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-295 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '--111-01' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("--111-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-296.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-296.xq
deleted file mode 100644
index 562f706d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-296.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-296 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '--1967-01' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("--1967-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-297.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-297.xq
deleted file mode 100644
index 8ad37aa4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-297.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-297 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '--02-31' is an invalid lexical representation for xs:gMonthDay. :)
-(:*******************************************************:)
-xs:gMonthDay("--02-31") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-298.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-298.xq
deleted file mode 100644
index 4bef27dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-298.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-298 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonthDay: the minute field must always be present. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-08-10") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-299.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-299.xq
deleted file mode 100644
index 9ccf6474..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-299.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-299 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:gMonthDay value '--02-30' represents a non-existent date. :)
-(:*******************************************************:)
-xs:gMonthDay("--02-30") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-3.xq
deleted file mode 100644
index 16685a50..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-3.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-3 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Syntax: only ? is allowed as occurence indicator in 'cast as' expressions. :)
-(:*******************************************************:)
-'string' cast as xs:anyType* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-30.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-30.xq
deleted file mode 100644
index d0286801..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-30.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-30 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(-0) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(-0) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-300.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-300.xq
deleted file mode 100644
index 76452e74..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-300.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-300 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:gMonthDay value '--04-31' represents a non-existent date. :)
-(:*******************************************************:)
-xs:gMonthDay("--04-31") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-301.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-301.xq
deleted file mode 100644
index ced24a08..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-301.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-301 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:gMonthDay value '--11-31' represents a non-existent date. :)
-(:*******************************************************:)
-xs:gMonthDay("--11-31") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-302.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-302.xq
deleted file mode 100644
index aac063f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-302.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-302 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonthDay: the hour component cannot be -15. :)
-(:*******************************************************:)
-xs:gMonthDay("--01-01-15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-303.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-303.xq
deleted file mode 100644
index a3dadfa4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-303.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-303 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonthDay: the hour component cannot be +15. :)
-(:*******************************************************:)
-xs:gMonthDay("--01-01+15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-304.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-304.xq
deleted file mode 100644
index 4d4240be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-304.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-304 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonthDay: the minute component cannot be +60. :)
-(:*******************************************************:)
-xs:gMonthDay("--01-01+10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-305.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-305.xq
deleted file mode 100644
index b12ea168..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-305.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-305 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:gMonthDay: the minute component cannot be -60. :)
-(:*******************************************************:)
-xs:gMonthDay("--01-01-10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-306.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-306.xq
deleted file mode 100644
index 08eab173..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-306.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-306 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure casting xs:gMonthDay to xs:string, with timezone '-00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gMonthDay("--01-01-00:00")) eq "--01-01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-307.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-307.xq
deleted file mode 100644
index 71af0665..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-307.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-307 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure casting xs:gMonthDay to xs:string, with timezone '+00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gMonthDay("--01-01+00:00")) eq "--01-01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-308.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-308.xq
deleted file mode 100644
index b779be3d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-308.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-308 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure casting xs:gMonthDay to xs:string, with timezone 'Z' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:gMonthDay("--01-01Z")) eq "--01-01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-309.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-309.xq
deleted file mode 100644
index efdf5ace..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-309.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-309 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple xs:gMonthDay test involving --02-29. :)
-(:*******************************************************:)
-xs:gMonthDay("--02-29+00:00") eq xs:gMonthDay("--02-29+00:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-31.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-31.xq
deleted file mode 100644
index e16f2a00..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-31.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-31 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:double(+0)) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(xs:double(+0)) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-310.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-310.xq
deleted file mode 100644
index 366191e7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-310.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-310 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '+2004-08-01T12:44:05' is an invalid lexical representation, a preceding '+' sign is not allowed for xs:dateTime. :)
-(:*******************************************************:)
-xs:dateTime("+2004-08-01T12:44:05") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-311.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-311.xq
deleted file mode 100644
index 00fd6fbd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-311.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-311 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '02004-08-01T12:44:05' is an invalid lexical representation for xs:dateTime; if the year part has more than four digits, leading zeros are prohibited. :)
-(:*******************************************************:)
-xs:dateTime("02004-08-01T12:44:05") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-312.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-312.xq
deleted file mode 100644
index 5b1153f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-312.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-312 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '00004-08-01T12:44:05' is an invalid lexical representation for xs:dateTime; if the year part has more than four digits, leading zeros are prohibited. :)
-(:*******************************************************:)
-xs:dateTime("00004-08-01T12:44:05") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-313.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-313.xq
deleted file mode 100644
index 6d133961..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-313.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-313 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2004-32-01T12:44:05' is an invalid lexical representation for xs:dateTime; the month part cannot be larger than 32. :)
-(:*******************************************************:)
-xs:dateTime("2004-32-01T12:44:05") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-314.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-314.xq
deleted file mode 100644
index 515d048b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-314.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-314 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-02-30T12:44:05' is a non-existent xs:dateTime date. :)
-(:*******************************************************:)
-xs:dateTime("2002-02-30T12:44:05") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-315.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-315.xq
deleted file mode 100644
index a506d175..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-315.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-315 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-002-15T12:44:05' is an invalid lexical representation for xs:dateTime. :)
-(:*******************************************************:)
-xs:dateTime("2002-002-15T12:44:05") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-316.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-316.xq
deleted file mode 100644
index 32cf949e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-316.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-316 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-02-150T12:44:05' is an invalid lexical representation for xs:dateTime. :)
-(:*******************************************************:)
-xs:dateTime("2002-02-150T12:44:05") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-317.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-317.xq
deleted file mode 100644
index b8ea066b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-317.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-317 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-02-15T24:00:00.001' is an invalid lexical representation for xs:dateTime; if hour is 24, seconds part must be 00. :)
-(:*******************************************************:)
-xs:dateTime("2002-02-15T24:00:00.001") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-318.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-318.xq
deleted file mode 100644
index 87e666f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-318.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-318 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-02-15T24:01:00' is an invalid lexical representation for xs:dateTime; if hour is 24, minutes part must be 00. :)
-(:*******************************************************:)
-xs:dateTime("2002-02-15T24:01:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-319.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-319.xq
deleted file mode 100644
index 9771bc08..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-319.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-319 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-02-15T25:00:00' is an invalid lexical representation for xs:dateTime; hour part can never be larger than 24. :)
-(:*******************************************************:)
-xs:dateTime("2002-02-15T25:01:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-32.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-32.xq
deleted file mode 100644
index 4d64cef9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-32.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-32 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:double(-0)) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(xs:double(-0)) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-320.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-320.xq
deleted file mode 100644
index ec81a9da..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-320.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-320 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-02-15T21:60:00' is an invalid lexical representation for xs:dateTime; minute part can never be larger than 59. :)
-(:*******************************************************:)
-xs:dateTime("2002-02-15T21:60:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-321.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-321.xq
deleted file mode 100644
index 49ae3713..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-321.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-321 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-02-15T21:01:60' is an invalid lexical representation for xs:dateTime; seconds part can never be larger than 59. :)
-(:*******************************************************:)
-xs:dateTime("2002-02-15T21:01:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-322.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-322.xq
deleted file mode 100644
index 58586729..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-322.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-322 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '--2002-02-15T21:01:23' is an invalid lexical representation for xs:dateTime. :)
-(:*******************************************************:)
-xs:dateTime("--2002-02-15T21:01:23") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-323.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-323.xq
deleted file mode 100644
index 1b538b12..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-323.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-323 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:dateTime: the hour component cannot be -15. :)
-(:*******************************************************:)
-xs:dateTime("1999-12-01T23:59:12.432-15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-324.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-324.xq
deleted file mode 100644
index 5bc388cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-324.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-324 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:dateTime: the hour component cannot be +15. :)
-(:*******************************************************:)
-xs:dateTime("1999-12-01T23:59:12.432+15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-325.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-325.xq
deleted file mode 100644
index 2d0bc134..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-325.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-325 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:dateTime: the minute component cannot be +60. :)
-(:*******************************************************:)
-xs:dateTime("1999-12-01T23:59:12.432+10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-326.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-326.xq
deleted file mode 100644
index c92a4fbc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-326.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-326 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:dateTime: the minute component cannot be -60. :)
-(:*******************************************************:)
-xs:dateTime("1999-12-01T23:59:12.432-10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-327.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-327.xq
deleted file mode 100644
index 98c14820..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-327.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-327 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:dateTime: the minute field must always be present. :)
-(:*******************************************************:)
-xs:dateTime("1999-12-01T23:59:12.999-00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-328.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-328.xq
deleted file mode 100644
index b5d031f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-328.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-328 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC timezone to xs:gYear. :)
-(:*******************************************************:)
-
- xs:gYear(xs:dateTime("2002-11-23T23:12:23.867-00:00")) eq xs:gYear("2002Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-329.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-329.xq
deleted file mode 100644
index e0bf49c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-329.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-329 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC offset to xs:gYear. :)
-(:*******************************************************:)
-
- xs:gYear(xs:dateTime("2002-11-23T23:12:23.867-13:37")) eq xs:gYear("2002-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-33.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-33.xq
deleted file mode 100644
index 0b029d32..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-33.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-33 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(0.0E0) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(0.0E0) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-330.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-330.xq
deleted file mode 100644
index ab1bcb6c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-330.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-330 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC timezone to xs:gYearMonth. :)
-(:*******************************************************:)
-
- xs:gYearMonth(xs:dateTime("2002-11-23T23:12:23.867-00:00")) eq xs:gYearMonth("2002-11Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-331.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-331.xq
deleted file mode 100644
index dcc54653..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-331.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-331 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC offset to xs:gYearMonth. :)
-(:*******************************************************:)
-
- xs:gYearMonth(xs:dateTime("2002-11-23T23:12:23.867-13:37"))
- eq xs:gYearMonth("2002-11-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-332.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-332.xq
deleted file mode 100644
index e787f887..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-332.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-332 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC timezone to xs:gMonth. :)
-(:*******************************************************:)
-
- xs:gMonth(xs:dateTime("2002-11-23T22:12:23.867-00:00")) eq xs:gMonth("--11Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-333.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-333.xq
deleted file mode 100644
index 35e50f49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-333.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-333 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC offset to xs:gMonth. :)
-(:*******************************************************:)
-
- xs:gMonth(xs:dateTime("2002-11-23T22:12:23.867-13:37")) eq xs:gMonth("--11-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-334.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-334.xq
deleted file mode 100644
index 9cb688a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-334.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-334 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC timezone to xs:gMonthDay. :)
-(:*******************************************************:)
-
- xs:gMonthDay(xs:dateTime("2002-11-23T22:12:23.867-00:00")) eq xs:gMonthDay("--11-23Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-335.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-335.xq
deleted file mode 100644
index 99c246f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-335.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-335 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC offset to xs:gMonthDay. :)
-(:*******************************************************:)
-
- xs:gMonthDay(xs:dateTime("2002-11-23T22:12:23.867-13:37")) eq xs:gMonthDay("--11-23-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-336.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-336.xq
deleted file mode 100644
index 88dcbb84..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-336.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-336 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC timezone to xs:gDay. :)
-(:*******************************************************:)
-
- xs:gDay(xs:dateTime("2002-11-23T22:12:23.867-00:00")) eq xs:gDay("---23Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-337.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-337.xq
deleted file mode 100644
index 66f4cc66..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-337.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-337 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC offset to xs:gDay. :)
-(:*******************************************************:)
-
- xs:gDay(xs:dateTime("2002-11-23T22:12:23.867-13:37")) eq xs:gDay("---23-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-338.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-338.xq
deleted file mode 100644
index 53d074be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-338.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-338 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC timezone to xs:date. :)
-(:*******************************************************:)
-
- xs:date(xs:dateTime("2002-11-23T22:12:23.867-00:00")) eq xs:date("2002-11-23Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-339.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-339.xq
deleted file mode 100644
index 126f35fc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-339.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-339 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC offset to xs:date. :)
-(:*******************************************************:)
-
- xs:date(xs:dateTime("2002-11-23T22:12:23.867-13:37")) eq xs:date("2002-11-23-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-34.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-34.xq
deleted file mode 100644
index 377d67ca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-34.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-34 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:double("NaN")) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(xs:double("NaN")) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-340.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-340.xq
deleted file mode 100644
index 9549c88b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-340.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-340 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC timezone to xs:time. :)
-(:*******************************************************:)
-
- xs:time(xs:dateTime("2002-11-23T22:12:23.867-00:00")) eq xs:time("22:12:23.867Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-341.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-341.xq
deleted file mode 100644
index 35162c66..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-341.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-341 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:dateTime with UTC offset to xs:time. :)
-(:*******************************************************:)
-
- xs:time(xs:dateTime("2002-11-23T22:12:23.867-13:37")) eq xs:time("22:12:23.867-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-342.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-342.xq
deleted file mode 100644
index 7cb700a1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-342.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-342 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure casting xs:dateTime to xs:string, with timezone '-00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:dateTime("1999-12-01T23:59:12.999-00:00")) eq
- "1999-12-01T23:59:12.999Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-343.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-343.xq
deleted file mode 100644
index 1a315440..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-343.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-343 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure casting xs:dateTime to xs:string, with timezone '+00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:dateTime("1999-12-01T23:59:12.432+00:00")) eq
- "1999-12-01T23:59:12.432Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-344.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-344.xq
deleted file mode 100644
index a00181e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-344.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-344 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:dateTime to xs:string that an empty milli seconds part is not serialized. :)
-(:*******************************************************:)
-xs:string(xs:dateTime("2002-02-15T21:01:23.000")) eq
- "2002-02-15T21:01:23" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-345.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-345.xq
deleted file mode 100644
index 601a341f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-345.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-345 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:dateTime to xs:string that milli seconds have no trailing zeros. :)
-(:*******************************************************:)
-xs:string(xs:dateTime("2002-02-15T21:01:23.100")) eq
- "2002-02-15T21:01:23.1" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-346.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-346.xq
deleted file mode 100644
index 5dbfc173..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-346.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-346 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:dateTime to xs:string that milli seconds are properly padded with zeros. :)
-(:*******************************************************:)
-xs:string(xs:dateTime("2002-02-15T21:01:23.001")) eq
- "2002-02-15T21:01:23.001" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-347.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-347.xq
deleted file mode 100644
index 9e0d42f6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-347.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-347 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:dateTime to xs:string that milli seconds are properly padded with zeros. :)
-(:*******************************************************:)
-xs:string(xs:dateTime("2002-02-15T21:01:23.010")) eq
- "2002-02-15T21:01:23.01" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-348.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-348.xq
deleted file mode 100644
index 289cbb03..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-348.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-348 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:dateTime to xs:string that a milli seconds part of '435' is handled properly. :)
-(:*******************************************************:)
-xs:string(xs:dateTime("2002-02-15T21:01:23.435")) eq
- "2002-02-15T21:01:23.435" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-349.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-349.xq
deleted file mode 100644
index d120b736..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-349.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-349 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:dateTime to xs:string that a milli seconds part of '11' is handled properly. :)
-(:*******************************************************:)
-xs:string(xs:dateTime("2002-02-15T21:01:23.11")) eq
- "2002-02-15T21:01:23.11" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-35.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-35.xq
deleted file mode 100644
index 8150041a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-35.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-35 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean(xs:float("NaN")) eq false()`. :)
-(:*******************************************************:)
-xs:boolean(xs:float("NaN")) eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-350.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-350.xq
deleted file mode 100644
index 22a2059b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-350.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-350 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:dateTime to xs:string that a milli seconds part of '110' is handled properly. :)
-(:*******************************************************:)
-xs:string(xs:dateTime("2002-02-15T21:01:23.110")) eq
- "2002-02-15T21:01:23.11" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-351.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-351.xq
deleted file mode 100644
index 3fcfb6af..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-351.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-351 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple xs:dateTime involving time with no milli seconds. :)
-(:*******************************************************:)
-string(xs:dateTime("2000-08-01T12:44:05")) eq
- "2000-08-01T12:44:05" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-352.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-352.xq
deleted file mode 100644
index f46ea392..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-352.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-352 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The canonical form of an xs:dateTime containing 24:00:00 is the following day at 00:00:00. :)
-(:*******************************************************:)
-string(xs:dateTime("2004-03-31T24:00:00")) eq "2004-04-01T00:00:00" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-353.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-353.xq
deleted file mode 100644
index 2566f589..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-353.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-353 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '24:00:00.001' is an invalid lexical representation for xs:time; if hour is 24, seconds part must be 00. :)
-(:*******************************************************:)
-xs:time("24:00:00.001") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-354.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-354.xq
deleted file mode 100644
index 7762ef60..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-354.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-354 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '24:01:00' is an invalid lexical representation for xs:time; if hour is 24, minutes part must be 00. :)
-(:*******************************************************:)
-xs:time("24:01:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-355.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-355.xq
deleted file mode 100644
index 2ecebcb5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-355.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-355 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '25:00:00' is an invalid lexical representation for xs:time; hour part can never be larger than 24. :)
-(:*******************************************************:)
-xs:time("25:01:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-356.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-356.xq
deleted file mode 100644
index c9c84dc3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-356.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-356 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '21:60:00' is an invalid lexical representation for xs:time; minute part can never be larger than 59. :)
-(:*******************************************************:)
-xs:time("21:60:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-357.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-357.xq
deleted file mode 100644
index 139c3a90..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-357.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-357 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '21:01:60' is an invalid lexical representation for xs:time; seconds part can never be larger than 59. :)
-(:*******************************************************:)
-xs:time("21:01:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-358.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-358.xq
deleted file mode 100644
index a6970dff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-358.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-358 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '+21:01:50' is an invalid lexical representation for xs:time. :)
-(:*******************************************************:)
-xs:time("+21:01:50") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-359.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-359.xq
deleted file mode 100644
index ec85c95b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-359.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-359 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '-21:01:50' is an invalid lexical representation for xs:time. :)
-(:*******************************************************:)
-xs:time("-21:01:50") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-36.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-36.xq
deleted file mode 100644
index 72856f3c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-36.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-36 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Invalid casting combination, combined with value comparison. :)
-(:*******************************************************:)
-'12312' cast as xs:boolean eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-360.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-360.xq
deleted file mode 100644
index 504402e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-360.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-360 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A valid xs:dateTime is an invalid xs:time. :)
-(:*******************************************************:)
-xs:time("2002-02-15T08:12:12") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-361.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-361.xq
deleted file mode 100644
index 23f66646..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-361.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-361 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:time: the hour component cannot be -15. :)
-(:*******************************************************:)
-xs:time("23:59:12.432-15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-362.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-362.xq
deleted file mode 100644
index ce338deb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-362.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-362 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:time: the hour component cannot be +15. :)
-(:*******************************************************:)
-xs:time("23:59:12.432+15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-363.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-363.xq
deleted file mode 100644
index 3d9e0bc7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-363.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-363 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:time: the minute component cannot be +60. :)
-(:*******************************************************:)
-xs:time("23:59:12.432+10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-364.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-364.xq
deleted file mode 100644
index 2f855f80..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-364.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-364 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:time: the minute component cannot be -60. :)
-(:*******************************************************:)
-xs:time("23:59:12.432-10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-365.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-365.xq
deleted file mode 100644
index 292eedca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-365.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-365 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:time: the minute field must always be present. :)
-(:*******************************************************:)
-xs:dateTime("T23:59:12.999-03") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-366.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-366.xq
deleted file mode 100644
index a68b836a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-366.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-366 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple xs:time involving time with no milli seconds. :)
-(:*******************************************************:)
-string(xs:time("12:44:05")) eq "12:44:05" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-367.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-367.xq
deleted file mode 100644
index 400697aa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-367.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-367 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure casting xs:time to xs:string, with timezone '-00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:time("23:59:12.999-00:00")) eq "23:59:12.999Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-368.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-368.xq
deleted file mode 100644
index 0b8741b1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-368.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-368 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure casting xs:time to xs:string, with timezone '+00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:time("23:59:12.432+00:00")) eq "23:59:12.432Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-369.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-369.xq
deleted file mode 100644
index 5b63d2e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-369.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-369 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:time to xs:string that an empty milli seconds part is not serialized. :)
-(:*******************************************************:)
-xs:string(xs:time("21:01:23.000")) eq "21:01:23" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-37.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-37.xq
deleted file mode 100644
index 55f61809..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-37.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-37 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `false() cast as xs:string eq "false"`. :)
-(:*******************************************************:)
-false() cast as xs:string eq "false" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-370.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-370.xq
deleted file mode 100644
index a6640c8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-370.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-370 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:time to xs:string that milli seconds have no trailing zeros. :)
-(:*******************************************************:)
-xs:string(xs:time("21:01:23.100")) eq "21:01:23.1" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-371.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-371.xq
deleted file mode 100644
index f44e4ce6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-371.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-371 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:time to xs:string that milli seconds are properly padded with zeros. :)
-(:*******************************************************:)
-xs:string(xs:time("21:01:23.001")) eq "21:01:23.001" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-372.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-372.xq
deleted file mode 100644
index d9d54acf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-372.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-372 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:time to xs:string that milli seconds are properly padded with zeros. :)
-(:*******************************************************:)
-xs:string(xs:time("21:01:23.010")) eq "21:01:23.01" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-373.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-373.xq
deleted file mode 100644
index 09f0f587..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-373.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-373 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:time to xs:string that a milli seconds part of '435' is handled properly. :)
-(:*******************************************************:)
-xs:string(xs:time("21:01:23.435")) eq "21:01:23.435" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-374.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-374.xq
deleted file mode 100644
index 5d7938c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-374.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-374 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:time to xs:string that a milli seconds part of '11' is handled properly. :)
-(:*******************************************************:)
-xs:string(xs:time("21:01:23.11")) eq "21:01:23.11" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-375.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-375.xq
deleted file mode 100644
index 9ec8c641..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-375.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-375 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:time to xs:string that a milli seconds part of '110' is handled properly. :)
-(:*******************************************************:)
-xs:string(xs:time("21:01:23.110")) eq "21:01:23.11" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-376.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-376.xq
deleted file mode 100644
index a820c0d1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-376.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-376 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The canonical form of an xs:time containing 24:00:00 is 00:00:00. :)
-(:*******************************************************:)
-string(xs:time("24:00:00")) eq "00:00:00" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-377.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-377.xq
deleted file mode 100644
index 0cf266e0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-377.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-377 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '+2004-08-01' is an invalid lexical representation, a preceding '+' sign is not allowed for xs:date. :)
-(:*******************************************************:)
-xs:date("+2004-08-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-378.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-378.xq
deleted file mode 100644
index d33bccaf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-378.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-378 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '02004-08-01' is an invalid lexical representation for xs:date; if the year part has more than four digits, leading zeros are prohibited. :)
-(:*******************************************************:)
-xs:date("02004-08-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-379.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-379.xq
deleted file mode 100644
index 4ddf07d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-379.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-379 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '00004-08-01' is an invalid lexical representation for xs:date; if the year part has more than four digits, leading zeros are prohibited. :)
-(:*******************************************************:)
-xs:date("00004-08-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-38.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-38.xq
deleted file mode 100644
index c8ba028c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-38.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-38 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `true() cast as xs:string eq "true"`. :)
-(:*******************************************************:)
-true() cast as xs:string eq "true" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-380.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-380.xq
deleted file mode 100644
index e0b401c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-380.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-380 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2004-32-01' is an invalid lexical representation for xs:date; the month part cannot be larger than 32. :)
-(:*******************************************************:)
-xs:date("2004-32-01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-381.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-381.xq
deleted file mode 100644
index 4ae70e81..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-381.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-381 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-02-30' is a non-existent xs:date date. :)
-(:*******************************************************:)
-xs:date("2002-02-30") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-382.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-382.xq
deleted file mode 100644
index ceac6f0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-382.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-382 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-002-15' is an invalid lexical representation for xs:date. :)
-(:*******************************************************:)
-xs:date("2002-002-15") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-383.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-383.xq
deleted file mode 100644
index 871091b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-383.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-383 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '2002-02-150' is an invalid lexical representation for xs:date. :)
-(:*******************************************************:)
-xs:date("2002-02-150") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-384.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-384.xq
deleted file mode 100644
index 0a9b5e05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-384.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-384 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: '--2002-02-15' is an invalid lexical representation for xs:date. :)
-(:*******************************************************:)
-xs:date("--2002-02-15") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-385.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-385.xq
deleted file mode 100644
index 6bd40149..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-385.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-385 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A valid xs:dateTime is an invalid xs:date. :)
-(:*******************************************************:)
-xs:date("2002-02-15T08:12:12") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-386.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-386.xq
deleted file mode 100644
index e5c1fcbe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-386.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-386 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:date: the hour component cannot be -15. :)
-(:*******************************************************:)
-xs:date("1999-12-01-15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-387.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-387.xq
deleted file mode 100644
index be1b3975..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-387.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-387 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:date: the hour component cannot be +15. :)
-(:*******************************************************:)
-xs:date("1999-12-01+15:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-388.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-388.xq
deleted file mode 100644
index 42717149..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-388.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-388 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:date: the minute component cannot be +60. :)
-(:*******************************************************:)
-xs:date("1999-12-01+10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-389.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-389.xq
deleted file mode 100644
index 647134b6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-389.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-389 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing timezone field in xs:date: the minute component cannot be -60. :)
-(:*******************************************************:)
-xs:date("1999-12-01-10:60") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-39.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-39.xq
deleted file mode 100644
index d931aeba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-39.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-39 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `('1' cast as xs:boolean) cast as xs:string eq 'true'`. :)
-(:*******************************************************:)
-('1' cast as xs:boolean) cast as xs:string eq 'true' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-390.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-390.xq
deleted file mode 100644
index 345ad64c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-390.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-390 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Testing datezone field in xs:date: the minute field must always be present. :)
-(:*******************************************************:)
-xs:dateTime("1999-12-01-03") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-391.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-391.xq
deleted file mode 100644
index 0a731a49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-391.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-391 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC timezone to xs:gYear. :)
-(:*******************************************************:)
-
- xs:gYear(xs:date("2002-11-23Z")) eq xs:gYear("2002Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-392.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-392.xq
deleted file mode 100644
index 9b201a48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-392.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-392 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC offset to xs:gYear. :)
-(:*******************************************************:)
-
- xs:gYear(xs:date("2002-11-23-13:37")) eq xs:gYear("2002-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-393.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-393.xq
deleted file mode 100644
index 6c0fe12b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-393.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-393 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC timezone to xs:gYearMonth. :)
-(:*******************************************************:)
-
- xs:gYearMonth(xs:date("2002-11-23Z")) eq xs:gYearMonth("2002-11Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-394.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-394.xq
deleted file mode 100644
index cea4cb07..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-394.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-394 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC offset to xs:gYearMonth. :)
-(:*******************************************************:)
-
- xs:gYearMonth(xs:date("2002-11-23-13:37"))
- eq xs:gYearMonth("2002-11-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-395.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-395.xq
deleted file mode 100644
index 74fea14c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-395.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-395 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC timezone to xs:gMonth. :)
-(:*******************************************************:)
-
- xs:gMonth(xs:date("2002-11-23-00:00")) eq xs:gMonth("--11Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-396.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-396.xq
deleted file mode 100644
index 8fab4e1f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-396.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-396 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC offset to xs:gMonth. :)
-(:*******************************************************:)
-
- xs:gMonth(xs:date("2002-11-23-13:37")) eq xs:gMonth("--11-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-397.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-397.xq
deleted file mode 100644
index 2e56d84a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-397.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-397 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC timezone to xs:gMonthDay. :)
-(:*******************************************************:)
-
- xs:gMonthDay(xs:date("2002-11-23-00:00")) eq xs:gMonthDay("--11-23Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-398.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-398.xq
deleted file mode 100644
index 3181b845..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-398.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-398 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC offset to xs:gMonthDay. :)
-(:*******************************************************:)
-
- xs:gMonthDay(xs:date("2002-11-23-13:37")) eq xs:gMonthDay("--11-23-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-399.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-399.xq
deleted file mode 100644
index 82ad6d7a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-399.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-399 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC timezone to xs:gDay. :)
-(:*******************************************************:)
-
- xs:gDay(xs:date("2002-11-23-00:00")) eq xs:gDay("---23Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-4.xq
deleted file mode 100644
index 34576dde..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-4.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-4 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'cast as' where the type is invalid. :)
-(:*******************************************************:)
-'string' cast as xs:anySimpleType \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-40.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-40.xq
deleted file mode 100644
index dffef1a3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-40.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-40 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:boolean('0') cast as xs:string eq 'false'`. :)
-(:*******************************************************:)
-xs:boolean('0') cast as xs:string eq 'false' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-400.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-400.xq
deleted file mode 100644
index a2bfa698..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-400.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-400 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC offset to xs:gDay. :)
-(:*******************************************************:)
-
- xs:gDay(xs:date("2002-11-23-13:37")) eq xs:gDay("---23-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-401.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-401.xq
deleted file mode 100644
index 750d1e73..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-401.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-401 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC timezone to xs:time. :)
-(:*******************************************************:)
-
- xs:dateTime(xs:date("2002-11-23-00:00"))
- eq xs:dateTime("2002-11-23T00:00:00.000Z")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-402.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-402.xq
deleted file mode 100644
index 0c4ff1a8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-402.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-402 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Simple test of casting a xs:date with UTC offset to xs:dateTime. :)
-(:*******************************************************:)
-
- xs:dateTime(xs:date("2002-11-23-13:37"))
- eq xs:dateTime("2002-11-23T00:00:00.000-13:37")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-403.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-403.xq
deleted file mode 100644
index 779d87c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-403.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-403 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure casting xs:date to xs:string, with timezone '-00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:date("1999-12-01-00:00")) eq "1999-12-01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-404.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-404.xq
deleted file mode 100644
index 0149a2ca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-404.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-404 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure casting xs:date to xs:string, with timezone '+00:00' is properly handled. :)
-(:*******************************************************:)
-xs:string(xs:date("1999-12-01+00:00")) eq "1999-12-01Z" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-405.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-405.xq
deleted file mode 100644
index 6caa10f6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-405.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-405 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:date to xs:string that an empty milli seconds part is not serialized. :)
-(:*******************************************************:)
-xs:string(xs:date("2002-02-15")) eq "2002-02-15" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-406.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-406.xq
deleted file mode 100644
index e78d3ae2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-406.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-406 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:date to xs:string that milli seconds have no trailing zeros. :)
-(:*******************************************************:)
-xs:string(xs:date("2002-02-15")) eq "2002-02-15" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-407.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-407.xq
deleted file mode 100644
index 81f414e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-407.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-407 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:date to xs:string that milli seconds are properly padded with zeros. :)
-(:*******************************************************:)
-xs:string(xs:date("2002-02-15")) eq "2002-02-15" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-408.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-408.xq
deleted file mode 100644
index c78f7e05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-408.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-408 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:date to xs:string that milli seconds are properly padded with zeros. :)
-(:*******************************************************:)
-xs:string(xs:date("2002-02-15")) eq "2002-02-15" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-409.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-409.xq
deleted file mode 100644
index e8c5f09e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-409.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-409 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:date to xs:string that a milli seconds part of '435' is handled properly. :)
-(:*******************************************************:)
-xs:string(xs:date("2002-02-15")) eq "2002-02-15" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-41.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-41.xq
deleted file mode 100644
index 4b8db258..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-41.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-41 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `" white space left alone" cast as xs:string eq xs:string(" white space left alone")`. :)
-(:*******************************************************:)
-" white space left alone" cast as xs:string eq
- xs:string(" white space left alone") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-410.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-410.xq
deleted file mode 100644
index 515a3d09..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-410.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-410 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:date to xs:string that a milli seconds part of '11' is handled properly. :)
-(:*******************************************************:)
-xs:string(xs:date("2002-02-15")) eq "2002-02-15" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-411.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-411.xq
deleted file mode 100644
index e5a08c85..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-411.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-411 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Ensure when casting xs:date to xs:string that a milli seconds part of '110' is handled properly. :)
-(:*******************************************************:)
-xs:string(xs:date("2002-02-15")) eq "2002-02-15" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-415.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-415.xq
deleted file mode 100644
index 8ec13ff5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-415.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-415 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:untypedAtomic constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:untypedAtomic() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-416.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-416.xq
deleted file mode 100644
index 3642d9b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-416.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-416 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:untypedAtomic constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:untypedAtomic(
- "an arbitrary string(untypedAtomic source)"
- ,
-
- "an arbitrary string(untypedAtomic source)"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-417.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-417.xq
deleted file mode 100644
index 79959c18..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-417.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-417 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:untypedAtomic constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:untypedAtomic("an arbitrary string(untypedAtomic source)")), 3, 1) instance of xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-418.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-418.xq
deleted file mode 100644
index a3431915..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-418.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-418 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:untypedAtomic. :)
-(:*******************************************************:)
-xs:untypedAtomic("
- an arbitrary string(untypedAtomic source)
- ")
- eq
- xs:untypedAtomic("
- an arbitrary string(untypedAtomic source)
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-419.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-419.xq
deleted file mode 100644
index a337c4fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-419.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-419 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is a valid lexical representation of xs:untypedAtomic. :)
-(:*******************************************************:)
-xs:untypedAtomic("")
- eq
- xs:untypedAtomic("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-42.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-42.xq
deleted file mode 100644
index fd25b02c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-42.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-42 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(xs:QName("fn:local-name") cast as xs:string) eq "fn:local-name"`. :)
-(:*******************************************************:)
-(xs:QName("fn:local-name") cast as xs:string) eq "fn:local-name" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-420.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-420.xq
deleted file mode 100644
index aaf5b26d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-420.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-420 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "an arbitrary string(untypedAtomic source)" . :)
-(:*******************************************************:)
-xs:untypedAtomic(xs:untypedAtomic(
- "an arbitrary string(untypedAtomic source)"
- )) eq xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-421.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-421.xq
deleted file mode 100644
index 803453f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-421.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-421 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Applying fn:boolean() to a value of type xs:untypedAtomic that has the lexical value ' "an arbitrary string(untypedAtomic source)" ' should result in the boolean value true. :)
-(:*******************************************************:)
-
- boolean(xs:untypedAtomic("an arbitrary string(untypedAtomic source)")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-422.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-422.xq
deleted file mode 100644
index af7a5653..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-422.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-422 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:untypedAtomic to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:untypedAtomic("an arbitrary string(untypedAtomic source)") cast as xs:untypedAtomic
- eq
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-423.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-423.xq
deleted file mode 100644
index 397d11ef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-423.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-423 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:untypedAtomic as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:untypedAtomic("an arbitrary string(untypedAtomic source)") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-424.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-424.xq
deleted file mode 100644
index 3e1e86ea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-424.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-424 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:untypedAtomic to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:untypedAtomic("an arbitrary string(untypedAtomic source)") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-425.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-425.xq
deleted file mode 100644
index cb4af661..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-425.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-425 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:untypedAtomic as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:untypedAtomic("an arbitrary string(untypedAtomic source)") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-426.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-426.xq
deleted file mode 100644
index 20854cb3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-426.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-426 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:untypedAtomic to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:untypedAtomic("an arbitrary string(untypedAtomic source)") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-427.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-427.xq
deleted file mode 100644
index 8812ddf4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-427.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-427 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:untypedAtomic as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:untypedAtomic("an arbitrary string(untypedAtomic source)") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-428.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-428.xq
deleted file mode 100644
index eb031707..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-428.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-428 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:untypedAtomic as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:untypedAtomic("an arbitrary string(untypedAtomic source)") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-429.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-429.xq
deleted file mode 100644
index 437aebac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-429.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-429 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:string constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:string() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-43.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-43.xq
deleted file mode 100644
index 00cae151..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-43.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-43 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(xs:QName("local-name") cast as xs:string) eq "local-name"`. :)
-(:*******************************************************:)
-(xs:QName("local-name") cast as xs:string) eq "local-name" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-430.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-430.xq
deleted file mode 100644
index 33994353..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-430.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-430 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:string constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:string(
- "an arbitrary string"
- ,
-
- "an arbitrary string"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-431.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-431.xq
deleted file mode 100644
index a6d78f85..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-431.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-431 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:string constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:string("an arbitrary string")), 3, 1) instance of xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-432.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-432.xq
deleted file mode 100644
index b2d39647..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-432.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-432 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:string. :)
-(:*******************************************************:)
-xs:string("
- an arbitrary string
- ")
- eq
- xs:string("
- an arbitrary string
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-433.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-433.xq
deleted file mode 100644
index a282de75..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-433.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-433 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is a valid lexical representation of xs:string. :)
-(:*******************************************************:)
-xs:string("")
- eq
- xs:string("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-434.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-434.xq
deleted file mode 100644
index 8b761795..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-434.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-434 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "an arbitrary string" . :)
-(:*******************************************************:)
-xs:string(xs:untypedAtomic(
- "an arbitrary string"
- )) eq xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-435.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-435.xq
deleted file mode 100644
index 34330817..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-435.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-435 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Applying fn:boolean() to a value of type xs:string that has the lexical value ' "an arbitrary string" ' should result in the boolean value true. :)
-(:*******************************************************:)
-
- boolean(xs:string("an arbitrary string")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-436.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-436.xq
deleted file mode 100644
index 7726fc7a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-436.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-436 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:string to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:string("an arbitrary string") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-437.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-437.xq
deleted file mode 100644
index d883a36c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-437.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-437 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:string as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:string("an arbitrary string") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-438.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-438.xq
deleted file mode 100644
index f505b15e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-438.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-438 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:string to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:string("an arbitrary string") cast as xs:string
- eq
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-439.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-439.xq
deleted file mode 100644
index 229c2ea2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-439.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-439 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:string as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:string("an arbitrary string") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-44.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-44.xq
deleted file mode 100644
index 1617cceb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-44.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-44 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:anyURI('example.com/')) eq 'example.com/'`. :)
-(:*******************************************************:)
-xs:string(xs:anyURI('example.com/')) eq 'example.com/' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-440.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-440.xq
deleted file mode 100644
index 5457e212..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-440.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-440 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:string as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:string("an arbitrary string") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-441.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-441.xq
deleted file mode 100644
index e9c55ae6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-441.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-441 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:float constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:float() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-442.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-442.xq
deleted file mode 100644
index cf9338d1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-442.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-442 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:float constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:float(
- "3.4e5"
- ,
-
- "3.4e5"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-443.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-443.xq
deleted file mode 100644
index c520be41..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-443.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-443 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:float constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:float("3.4e5")), 3, 1) instance of xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-444.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-444.xq
deleted file mode 100644
index b0e8bd41..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-444.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-444 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:float. :)
-(:*******************************************************:)
-xs:float("
- 3.4e5
- ")
- eq
- xs:float("
- 3.4e5
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-445.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-445.xq
deleted file mode 100644
index 8b4d7c6c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-445.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-445 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:float. :)
-(:*******************************************************:)
-xs:float("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-446.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-446.xq
deleted file mode 100644
index 73a2a2e0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-446.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-446 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "3.4e5" . :)
-(:*******************************************************:)
-xs:float(xs:untypedAtomic(
- "3.4e5"
- )) eq xs:float("3.4e5") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-447.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-447.xq
deleted file mode 100644
index 00fbe541..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-447.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-447 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Applying fn:boolean() to a value of type xs:float that has the lexical value ' "3.4e5" ' should result in the boolean value true. :)
-(:*******************************************************:)
-
- boolean(xs:float("3.4e5")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-448.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-448.xq
deleted file mode 100644
index a38b64cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-448.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-448 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-449.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-449.xq
deleted file mode 100644
index a4681c31..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-449.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-449 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:float("3.4e5") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-45.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-45.xq
deleted file mode 100644
index ff43d062..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-45.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-45 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:double(3)) eq '3'`. :)
-(:*******************************************************:)
-xs:string(xs:double(3)) eq '3' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-450.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-450.xq
deleted file mode 100644
index 089d2d15..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-450.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-450 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-451.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-451.xq
deleted file mode 100644
index 66839268..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-451.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-451 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:float("3.4e5") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-452.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-452.xq
deleted file mode 100644
index cbaa0d7f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-452.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-452 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:float is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:float
- eq
- xs:float("3.4e5") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-453.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-453.xq
deleted file mode 100644
index ca44870a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-453.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-453 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:float as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:float("3.4e5") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-454.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-454.xq
deleted file mode 100644
index 8de25898..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-454.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-454 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:double is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:double
- ne
- xs:double("3.3e3") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-455.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-455.xq
deleted file mode 100644
index 50df0dac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-455.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-455 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:double as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:float("3.4e5") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-456.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-456.xq
deleted file mode 100644
index 21bfd03c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-456.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-456 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-457.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-457.xq
deleted file mode 100644
index 1de5aeec..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-457.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-457 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-458.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-458.xq
deleted file mode 100644
index a7c758cc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-458.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-458 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-459.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-459.xq
deleted file mode 100644
index 590050c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-459.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-459 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-46.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-46.xq
deleted file mode 100644
index a3ea31d9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-46.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-46 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:string(3)) eq '3'`. :)
-(:*******************************************************:)
-xs:string(xs:string(3)) eq '3' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-460.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-460.xq
deleted file mode 100644
index ee17463b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-460.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-460 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-461.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-461.xq
deleted file mode 100644
index eb19668b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-461.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-461 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-462.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-462.xq
deleted file mode 100644
index 65898c64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-462.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-462 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-463.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-463.xq
deleted file mode 100644
index d3d65b69..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-463.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-463 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-464.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-464.xq
deleted file mode 100644
index 76571bc4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-464.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-464 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-465.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-465.xq
deleted file mode 100644
index 9531c78a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-465.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-465 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-466.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-466.xq
deleted file mode 100644
index b319d172..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-466.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-466 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-467.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-467.xq
deleted file mode 100644
index 14f85e65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-467.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-467 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-468.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-468.xq
deleted file mode 100644
index 30e5b1d8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-468.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-468 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-469.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-469.xq
deleted file mode 100644
index e8b43d21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-469.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-469 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-47.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-47.xq
deleted file mode 100644
index b0d8d07d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-47.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-47 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:integer(3)) eq '3'`. :)
-(:*******************************************************:)
-xs:string(xs:integer(3)) eq '3' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-470.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-470.xq
deleted file mode 100644
index 847b7854..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-470.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-470 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-471.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-471.xq
deleted file mode 100644
index d51b7f7e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-471.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-471 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-472.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-472.xq
deleted file mode 100644
index 1d00d989..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-472.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-472 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-473.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-473.xq
deleted file mode 100644
index b057ad93..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-473.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-473 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-474.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-474.xq
deleted file mode 100644
index 8825c0fc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-474.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-474 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-475.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-475.xq
deleted file mode 100644
index 0ea3db68..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-475.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-475 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-476.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-476.xq
deleted file mode 100644
index 986a4293..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-476.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-476 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-477.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-477.xq
deleted file mode 100644
index 1d0822c7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-477.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-477 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-478.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-478.xq
deleted file mode 100644
index 6c9b438c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-478.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-478 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:boolean is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:boolean
- eq
- xs:boolean("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-479.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-479.xq
deleted file mode 100644
index 0714d048..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-479.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-479 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:boolean as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:float("3.4e5") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-48.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-48.xq
deleted file mode 100644
index 117a203b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-48.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-48 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:decimal(3)) eq '3'`. :)
-(:*******************************************************:)
-xs:string(xs:decimal(3)) eq '3' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-480.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-480.xq
deleted file mode 100644
index c82f4d5c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-480.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-480 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-481.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-481.xq
deleted file mode 100644
index b399706e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-481.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-481 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-482.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-482.xq
deleted file mode 100644
index 04385f67..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-482.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-482 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-483.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-483.xq
deleted file mode 100644
index 1b882d42..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-483.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-483 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-484.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-484.xq
deleted file mode 100644
index e9d72a3c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-484.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-484 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-485.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-485.xq
deleted file mode 100644
index ab23044b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-485.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-485 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-486.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-486.xq
deleted file mode 100644
index 6720f668..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-486.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-486 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:float to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:float("3.4e5") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-487.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-487.xq
deleted file mode 100644
index a0eb7f86..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-487.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-487 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-488.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-488.xq
deleted file mode 100644
index 2cb11449..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-488.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-488 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:float as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:float("3.4e5") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-489.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-489.xq
deleted file mode 100644
index 686ec030..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-489.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-489 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:double constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:double() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-49.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-49.xq
deleted file mode 100644
index bbd367d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-49.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-49 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `"untyped a " cast as xs:untypedAtomic eq xs:untypedAtomic("untyped a ")`. :)
-(:*******************************************************:)
-"untyped a " cast as xs:untypedAtomic
- eq xs:untypedAtomic("untyped a ") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-490.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-490.xq
deleted file mode 100644
index d08f92f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-490.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-490 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:double constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:double(
- "3.3e3"
- ,
-
- "3.3e3"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-491.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-491.xq
deleted file mode 100644
index 0f8f5f26..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-491.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-491 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:double constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:double("3.3e3")), 3, 1) instance of xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-492.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-492.xq
deleted file mode 100644
index d6688cd9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-492.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-492 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:double. :)
-(:*******************************************************:)
-xs:double("
- 3.3e3
- ")
- eq
- xs:double("
- 3.3e3
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-493.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-493.xq
deleted file mode 100644
index 0fbcfde0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-493.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-493 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:double. :)
-(:*******************************************************:)
-xs:double("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-494.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-494.xq
deleted file mode 100644
index 091934d7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-494.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-494 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "3.3e3" . :)
-(:*******************************************************:)
-xs:double(xs:untypedAtomic(
- "3.3e3"
- )) eq xs:double("3.3e3") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-495.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-495.xq
deleted file mode 100644
index 039ea1a4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-495.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-495 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Applying fn:boolean() to a value of type xs:double that has the lexical value ' "3.3e3" ' should result in the boolean value true. :)
-(:*******************************************************:)
-
- boolean(xs:double("3.3e3")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-496.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-496.xq
deleted file mode 100644
index f71c47b1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-496.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-496 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-497.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-497.xq
deleted file mode 100644
index 917e57a1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-497.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-497 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:double("3.3e3") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-498.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-498.xq
deleted file mode 100644
index b26f3bba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-498.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-498 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-499.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-499.xq
deleted file mode 100644
index c0d4e173..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-499.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-499 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:double("3.3e3") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-5.xq
deleted file mode 100644
index aa94641e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-5.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-5 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'cast as' where the type is invalid. :)
-(:*******************************************************:)
-'string' cast as xs:untyped \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-50.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-50.xq
deleted file mode 100644
index e4dec09c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-50.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-50 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `false() cast as xs:untypedAtomic eq xs:untypedAtomic("false")`. :)
-(:*******************************************************:)
-false() cast as xs:untypedAtomic
- eq xs:untypedAtomic("false") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-500.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-500.xq
deleted file mode 100644
index d8518140..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-500.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-500 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:float is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:float
- ne
- xs:float("3.4e5") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-501.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-501.xq
deleted file mode 100644
index a6635cfc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-501.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-501 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:float as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:double("3.3e3") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-502.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-502.xq
deleted file mode 100644
index 048dd725..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-502.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-502 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:double is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:double
- eq
- xs:double("3.3e3") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-503.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-503.xq
deleted file mode 100644
index 33369e1c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-503.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-503 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:double as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:double("3.3e3") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-504.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-504.xq
deleted file mode 100644
index 0c4dc145..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-504.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-504 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-505.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-505.xq
deleted file mode 100644
index 849a27c8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-505.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-505 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-506.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-506.xq
deleted file mode 100644
index 2c8541ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-506.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-506 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-507.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-507.xq
deleted file mode 100644
index 088eff30..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-507.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-507 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-508.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-508.xq
deleted file mode 100644
index 42058ab4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-508.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-508 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-509.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-509.xq
deleted file mode 100644
index 76ed671d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-509.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-509 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-51.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-51.xq
deleted file mode 100644
index 4e66b8ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-51.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-51 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `true() cast as xs:untypedAtomic eq xs:untypedAtomic("true")`. :)
-(:*******************************************************:)
-true() cast as xs:untypedAtomic
- eq xs:untypedAtomic("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-510.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-510.xq
deleted file mode 100644
index faa66565..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-510.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-510 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-511.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-511.xq
deleted file mode 100644
index 87fe0fb9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-511.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-511 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-512.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-512.xq
deleted file mode 100644
index 60c6e9d2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-512.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-512 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-513.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-513.xq
deleted file mode 100644
index bcd11ea2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-513.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-513 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-514.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-514.xq
deleted file mode 100644
index 83b53471..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-514.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-514 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-515.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-515.xq
deleted file mode 100644
index 5c091804..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-515.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-515 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-516.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-516.xq
deleted file mode 100644
index 8dfb754e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-516.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-516 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-517.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-517.xq
deleted file mode 100644
index c278c618..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-517.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-517 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-518.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-518.xq
deleted file mode 100644
index b5c81345..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-518.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-518 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-519.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-519.xq
deleted file mode 100644
index eb6207cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-519.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-519 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-52.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-52.xq
deleted file mode 100644
index eafb711c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-52.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-52 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `false() cast as xs:untypedAtomic instance of xs:untypedAtomic`. :)
-(:*******************************************************:)
-false() cast as xs:untypedAtomic instance of xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-520.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-520.xq
deleted file mode 100644
index c4c30b73..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-520.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-520 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-521.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-521.xq
deleted file mode 100644
index a9093d13..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-521.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-521 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-522.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-522.xq
deleted file mode 100644
index 49eed814..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-522.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-522 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-523.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-523.xq
deleted file mode 100644
index c82775fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-523.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-523 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-524.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-524.xq
deleted file mode 100644
index b9f5b1d6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-524.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-524 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-525.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-525.xq
deleted file mode 100644
index 99a27d74..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-525.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-525 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-526.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-526.xq
deleted file mode 100644
index bc3d12c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-526.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-526 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:boolean is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:boolean
- eq
- xs:boolean("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-527.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-527.xq
deleted file mode 100644
index ca93de84..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-527.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-527 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:boolean as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:double("3.3e3") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-528.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-528.xq
deleted file mode 100644
index b3e32a2f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-528.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-528 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-529.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-529.xq
deleted file mode 100644
index 46b6b2fc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-529.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-529 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-53.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-53.xq
deleted file mode 100644
index cc39bb0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-53.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-53 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `true() cast as xs:untypedAtomic instance of xs:untypedAtomic`. :)
-(:*******************************************************:)
-true() cast as xs:untypedAtomic instance of xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-530.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-530.xq
deleted file mode 100644
index 9f531a56..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-530.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-530 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-531.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-531.xq
deleted file mode 100644
index ef1dfccc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-531.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-531 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-532.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-532.xq
deleted file mode 100644
index 27796a16..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-532.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-532 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-533.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-533.xq
deleted file mode 100644
index 58946c21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-533.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-533 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-534.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-534.xq
deleted file mode 100644
index 017e5784..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-534.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-534 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:double to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:double("3.3e3") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-535.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-535.xq
deleted file mode 100644
index 32ae13bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-535.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-535 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-536.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-536.xq
deleted file mode 100644
index 274b2fa9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-536.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-536 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:double as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:double("3.3e3") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-537.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-537.xq
deleted file mode 100644
index bf14b926..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-537.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-537 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:decimal constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:decimal() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-538.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-538.xq
deleted file mode 100644
index 362bd74a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-538.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-538 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:decimal constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:decimal(
- "10.01"
- ,
-
- "10.01"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-539.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-539.xq
deleted file mode 100644
index d1f9c0eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-539.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-539 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:decimal constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:decimal("10.01")), 3, 1) instance of xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-54.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-54.xq
deleted file mode 100644
index 27f04e50..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-54.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-54 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(xs:QName("local-name") cast as xs:untypedAtomic) eq xs:untypedAtomic("local-name")`. :)
-(:*******************************************************:)
-(xs:QName("local-name") cast as xs:untypedAtomic)
- eq xs:untypedAtomic("local-name") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-540.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-540.xq
deleted file mode 100644
index c40a279d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-540.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-540 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:decimal. :)
-(:*******************************************************:)
-xs:decimal("
- 10.01
- ")
- eq
- xs:decimal("
- 10.01
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-541.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-541.xq
deleted file mode 100644
index 610fc818..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-541.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-541 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:decimal. :)
-(:*******************************************************:)
-xs:decimal("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-542.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-542.xq
deleted file mode 100644
index aa1704c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-542.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-542 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "10.01" . :)
-(:*******************************************************:)
-xs:decimal(xs:untypedAtomic(
- "10.01"
- )) eq xs:decimal("10.01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-543.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-543.xq
deleted file mode 100644
index 86a07078..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-543.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-543 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Applying fn:boolean() to a value of type xs:decimal that has the lexical value ' "10.01" ' should result in the boolean value true. :)
-(:*******************************************************:)
-
- boolean(xs:decimal("10.01")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-544.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-544.xq
deleted file mode 100644
index 5a689b8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-544.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-544 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-545.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-545.xq
deleted file mode 100644
index a99e04f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-545.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-545 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:decimal("10.01") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-546.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-546.xq
deleted file mode 100644
index 8e390b0b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-546.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-546 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-547.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-547.xq
deleted file mode 100644
index 146d4c4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-547.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-547 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:decimal("10.01") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-548.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-548.xq
deleted file mode 100644
index 89e9b02d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-548.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-548 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:float is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:float
- ne
- xs:float("3.4e5") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-549.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-549.xq
deleted file mode 100644
index 0dd63bdc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-549.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-549 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:float as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:decimal("10.01") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-55.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-55.xq
deleted file mode 100644
index 3ab368f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-55.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-55 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(xs:QName("fn:local-name") cast as xs:untypedAtomic) eq xs:untypedAtomic("fn:local-name")`. :)
-(:*******************************************************:)
-(xs:QName("fn:local-name") cast as xs:untypedAtomic)
- eq xs:untypedAtomic("fn:local-name") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-550.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-550.xq
deleted file mode 100644
index 3691434e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-550.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-550 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:double is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:double
- ne
- xs:double("3.3e3") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-551.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-551.xq
deleted file mode 100644
index bf01d82f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-551.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-551 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:double as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:decimal("10.01") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-552.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-552.xq
deleted file mode 100644
index 36b67749..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-552.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-552 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:decimal is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:decimal
- eq
- xs:decimal("10.01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-553.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-553.xq
deleted file mode 100644
index c4f863f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-553.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-553 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:decimal as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:decimal("10.01") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-554.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-554.xq
deleted file mode 100644
index d6b8cfb0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-554.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-554 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:integer is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:integer
- ne
- xs:integer("6789") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-555.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-555.xq
deleted file mode 100644
index b0e6f9bc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-555.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-555 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:integer as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:decimal("10.01") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-556.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-556.xq
deleted file mode 100644
index 72c42886..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-556.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-556 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-557.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-557.xq
deleted file mode 100644
index e1f551db..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-557.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-557 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-558.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-558.xq
deleted file mode 100644
index 881a8e59..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-558.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-558 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-559.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-559.xq
deleted file mode 100644
index 1f279d2c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-559.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-559 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-56.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-56.xq
deleted file mode 100644
index 825a1bfa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-56.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-56 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:untypedAtomic(xs:anyURI('example.com/')) eq 'example.com/'`. :)
-(:*******************************************************:)
-xs:untypedAtomic(xs:anyURI('example.com/')) eq 'example.com/' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-560.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-560.xq
deleted file mode 100644
index 9cc8dfd2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-560.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-560 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-561.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-561.xq
deleted file mode 100644
index 01c14639..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-561.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-561 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-562.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-562.xq
deleted file mode 100644
index 2d20b0eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-562.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-562 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-563.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-563.xq
deleted file mode 100644
index 07a617f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-563.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-563 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-564.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-564.xq
deleted file mode 100644
index 747e0228..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-564.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-564 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-565.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-565.xq
deleted file mode 100644
index 17b25595..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-565.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-565 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-566.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-566.xq
deleted file mode 100644
index c8304029..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-566.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-566 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-567.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-567.xq
deleted file mode 100644
index e7679d7f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-567.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-567 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-568.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-568.xq
deleted file mode 100644
index 3ffcfbfe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-568.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-568 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-569.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-569.xq
deleted file mode 100644
index a534bec5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-569.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-569 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-57.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-57.xq
deleted file mode 100644
index f78e7fba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-57.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-57 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:untypedAtomic(xs:double(3)) eq '3'`. :)
-(:*******************************************************:)
-xs:untypedAtomic(xs:double(3)) eq '3' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-570.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-570.xq
deleted file mode 100644
index 0a6b851f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-570.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-570 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-571.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-571.xq
deleted file mode 100644
index 2a6777ea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-571.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-571 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-572.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-572.xq
deleted file mode 100644
index fe96d79f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-572.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-572 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-573.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-573.xq
deleted file mode 100644
index 894203b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-573.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-573 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-574.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-574.xq
deleted file mode 100644
index d0635e38..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-574.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-574 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-575.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-575.xq
deleted file mode 100644
index 3f231f94..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-575.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-575 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-576.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-576.xq
deleted file mode 100644
index 8f402d98..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-576.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-576 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-577.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-577.xq
deleted file mode 100644
index 5526f6f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-577.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-577 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-578.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-578.xq
deleted file mode 100644
index 5e2590f9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-578.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-578 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:boolean is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:boolean
- eq
- xs:boolean("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-579.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-579.xq
deleted file mode 100644
index ef2b7a7b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-579.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-579 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:boolean as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:decimal("10.01") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-58.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-58.xq
deleted file mode 100644
index cdbf0138..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-58.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-58 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:untypedAtomic(xs:string(3)) eq '3'`. :)
-(:*******************************************************:)
-xs:untypedAtomic(xs:string(3)) eq '3' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-580.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-580.xq
deleted file mode 100644
index 4e184011..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-580.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-580 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-581.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-581.xq
deleted file mode 100644
index 00a793fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-581.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-581 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-582.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-582.xq
deleted file mode 100644
index 4d40c252..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-582.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-582 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-583.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-583.xq
deleted file mode 100644
index 1403e3f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-583.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-583 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-584.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-584.xq
deleted file mode 100644
index 0b896d22..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-584.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-584 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-585.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-585.xq
deleted file mode 100644
index 7694732b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-585.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-585 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-586.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-586.xq
deleted file mode 100644
index 33ea36ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-586.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-586 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:decimal to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:decimal("10.01") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-587.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-587.xq
deleted file mode 100644
index c911f9e1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-587.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-587 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-588.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-588.xq
deleted file mode 100644
index 8733270f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-588.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-588 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:decimal as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:decimal("10.01") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-589.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-589.xq
deleted file mode 100644
index fcb4c265..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-589.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-589 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:integer constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:integer() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-59.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-59.xq
deleted file mode 100644
index b06175aa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-59.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-59 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:untypedAtomic(xs:integer(3)) eq '3'`. :)
-(:*******************************************************:)
-xs:untypedAtomic(xs:integer(3)) eq '3' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-590.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-590.xq
deleted file mode 100644
index 1aea350d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-590.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-590 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:integer constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:integer(
- "6789"
- ,
-
- "6789"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-591.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-591.xq
deleted file mode 100644
index 46f8f324..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-591.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-591 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:integer constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:integer("6789")), 3, 1) instance of xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-592.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-592.xq
deleted file mode 100644
index 89c0dad8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-592.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-592 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:integer. :)
-(:*******************************************************:)
-xs:integer("
- 6789
- ")
- eq
- xs:integer("
- 6789
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-593.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-593.xq
deleted file mode 100644
index 155e473e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-593.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-593 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:integer. :)
-(:*******************************************************:)
-xs:integer("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-594.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-594.xq
deleted file mode 100644
index 6bc39297..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-594.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-594 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "6789" . :)
-(:*******************************************************:)
-xs:integer(xs:untypedAtomic(
- "6789"
- )) eq xs:integer("6789") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-595.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-595.xq
deleted file mode 100644
index c7c49491..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-595.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-595 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Applying fn:boolean() to a value of type xs:integer that has the lexical value ' "6789" ' should result in the boolean value true. :)
-(:*******************************************************:)
-
- boolean(xs:integer("6789")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-596.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-596.xq
deleted file mode 100644
index 54774163..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-596.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-596 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-597.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-597.xq
deleted file mode 100644
index 8f2f87cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-597.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-597 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:integer("6789") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-598.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-598.xq
deleted file mode 100644
index 5a9a813b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-598.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-598 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-599.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-599.xq
deleted file mode 100644
index 201db3cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-599.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-599 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:integer("6789") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-6.xq
deleted file mode 100644
index 89c9b2ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-6.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-6 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'cast as' where the type is invalid. :)
-(:*******************************************************:)
-'string' cast as xs:anyAtomicType \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-60.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-60.xq
deleted file mode 100644
index b56b2a39..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-60.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-60 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:untypedAtomic(xs:decimal(3)) eq '3'`. :)
-(:*******************************************************:)
-xs:untypedAtomic(xs:decimal(3)) eq '3' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-600.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-600.xq
deleted file mode 100644
index 4ccab811..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-600.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-600 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:float is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:float
- ne
- xs:float("3.4e5") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-601.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-601.xq
deleted file mode 100644
index f730b016..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-601.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-601 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:float as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:integer("6789") castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-602.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-602.xq
deleted file mode 100644
index 4621f50c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-602.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-602 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:double is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:double
- ne
- xs:double("3.3e3") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-603.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-603.xq
deleted file mode 100644
index 4bea83fa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-603.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-603 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:double as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:integer("6789") castable as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-604.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-604.xq
deleted file mode 100644
index 61a67a16..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-604.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-604 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:decimal is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:decimal
- ne
- xs:decimal("10.01") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-605.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-605.xq
deleted file mode 100644
index ffda358b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-605.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-605 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:decimal as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:integer("6789") castable as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-606.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-606.xq
deleted file mode 100644
index 0713aea8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-606.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-606 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:integer is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:integer
- eq
- xs:integer("6789") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-607.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-607.xq
deleted file mode 100644
index 1ebd38c1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-607.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-607 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:integer as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:integer("6789") castable as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-608.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-608.xq
deleted file mode 100644
index 559155ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-608.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-608 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-609.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-609.xq
deleted file mode 100644
index 8580a562..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-609.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-609 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-61.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-61.xq
deleted file mode 100644
index 1f45aa0d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-61.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-61 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting to xs:notation is not allowed. :)
-(:*******************************************************:)
-"notation is abstract" cast as xs:NOTATION \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-610.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-610.xq
deleted file mode 100644
index a06bc0ad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-610.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-610 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-611.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-611.xq
deleted file mode 100644
index 29824a21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-611.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-611 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-612.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-612.xq
deleted file mode 100644
index 10b268e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-612.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-612 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-613.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-613.xq
deleted file mode 100644
index 195d610c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-613.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-613 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-614.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-614.xq
deleted file mode 100644
index 695990fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-614.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-614 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-615.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-615.xq
deleted file mode 100644
index c9bd67ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-615.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-615 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-616.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-616.xq
deleted file mode 100644
index 8d9bb6f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-616.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-616 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-617.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-617.xq
deleted file mode 100644
index c561a760..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-617.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-617 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-618.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-618.xq
deleted file mode 100644
index cd42de74..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-618.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-618 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-619.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-619.xq
deleted file mode 100644
index 36d079f9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-619.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-619 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-62.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-62.xq
deleted file mode 100644
index 6010b107..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-62.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-62 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting to xs:notation is not allowed. :)
-(:*******************************************************:)
-"notation is abstract" cast as xs:NOTATION? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-620.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-620.xq
deleted file mode 100644
index 96c433b3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-620.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-620 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-621.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-621.xq
deleted file mode 100644
index 34d88d0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-621.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-621 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-622.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-622.xq
deleted file mode 100644
index 86439132..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-622.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-622 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-623.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-623.xq
deleted file mode 100644
index 2d8b8a2b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-623.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-623 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-624.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-624.xq
deleted file mode 100644
index 47ed98d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-624.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-624 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-625.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-625.xq
deleted file mode 100644
index 42e6eba1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-625.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-625 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-626.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-626.xq
deleted file mode 100644
index 2c2b937e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-626.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-626 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-627.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-627.xq
deleted file mode 100644
index e8e8f1bb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-627.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-627 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-628.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-628.xq
deleted file mode 100644
index c70b4a3e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-628.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-628 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-629.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-629.xq
deleted file mode 100644
index 08ac6210..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-629.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-629 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-63.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-63.xq
deleted file mode 100644
index 57b3b7f8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-63.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-63 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting to xs:notation is not allowed. :)
-(:*******************************************************:)
-() cast as xs:NOTATION? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-630.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-630.xq
deleted file mode 100644
index 13e18f66..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-630.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-630 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:boolean is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:boolean
- eq
- xs:boolean("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-631.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-631.xq
deleted file mode 100644
index 4185bf6d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-631.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-631 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:boolean as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:integer("6789") castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-632.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-632.xq
deleted file mode 100644
index 4e5f6a9a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-632.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-632 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-633.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-633.xq
deleted file mode 100644
index 912b8462..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-633.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-633 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-634.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-634.xq
deleted file mode 100644
index 9c09b8a5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-634.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-634 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-635.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-635.xq
deleted file mode 100644
index 55055ef2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-635.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-635 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-636.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-636.xq
deleted file mode 100644
index 6003e0a2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-636.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-636 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-637.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-637.xq
deleted file mode 100644
index 1ffdbfd4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-637.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-637 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-638.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-638.xq
deleted file mode 100644
index 8c00e809..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-638.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-638 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:integer to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:integer("6789") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-639.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-639.xq
deleted file mode 100644
index 066e9a7d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-639.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-639 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-64.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-64.xq
deleted file mode 100644
index 788c7473..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-64.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-64 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting to xs:notation is not allowed. :)
-(:*******************************************************:)
-() cast as xs:NOTATION \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-640.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-640.xq
deleted file mode 100644
index 0e34db4e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-640.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-640 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:integer as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:integer("6789") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-641.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-641.xq
deleted file mode 100644
index 0eb4669e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-641.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-641 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:duration constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:duration() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-642.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-642.xq
deleted file mode 100644
index 7831af70..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-642.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-642 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:duration constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:duration(
- "P1Y2M3DT10H30M"
- ,
-
- "P1Y2M3DT10H30M"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-643.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-643.xq
deleted file mode 100644
index 366928b6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-643.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-643 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:duration constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:duration("P1Y2M3DT10H30M")), 3, 1) instance of xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-644.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-644.xq
deleted file mode 100644
index dd7bf1a0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-644.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-644 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:duration. :)
-(:*******************************************************:)
-xs:duration("
- P1Y2M3DT10H30M
- ")
- eq
- xs:duration("
- P1Y2M3DT10H30M
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-645.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-645.xq
deleted file mode 100644
index ad0ce127..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-645.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-645 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:duration. :)
-(:*******************************************************:)
-xs:duration("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-646.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-646.xq
deleted file mode 100644
index 36960b07..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-646.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-646 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "P1Y2M3DT10H30M" . :)
-(:*******************************************************:)
-xs:duration(xs:untypedAtomic(
- "P1Y2M3DT10H30M"
- )) eq xs:duration("P1Y2M3DT10H30M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-647.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-647.xq
deleted file mode 100644
index e4416fbf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-647.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-647 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:duration, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:duration("P1Y2M3DT10H30M")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-648.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-648.xq
deleted file mode 100644
index e4e66546..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-648.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-648 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-649.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-649.xq
deleted file mode 100644
index 41caf3b0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-649.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-649 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-65.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-65.xq
deleted file mode 100644
index 669eae4c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-65.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-65 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting to xs:notation is not allowed. :)
-(:*******************************************************:)
-xs:NOTATION(xs:anyURI('example.com/')) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-650.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-650.xq
deleted file mode 100644
index 5c925378..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-650.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-650 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-651.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-651.xq
deleted file mode 100644
index 840e9b73..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-651.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-651 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-652.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-652.xq
deleted file mode 100644
index df1f1c1e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-652.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-652 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-653.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-653.xq
deleted file mode 100644
index 76247171..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-653.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-653 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-654.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-654.xq
deleted file mode 100644
index c1f7b100..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-654.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-654 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-655.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-655.xq
deleted file mode 100644
index e05787cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-655.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-655 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-656.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-656.xq
deleted file mode 100644
index e50fc8a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-656.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-656 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-657.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-657.xq
deleted file mode 100644
index 8c4f6d3c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-657.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-657 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-658.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-658.xq
deleted file mode 100644
index a5be9fe3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-658.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-658 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-659.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-659.xq
deleted file mode 100644
index d5c3eab9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-659.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-659 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-66.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-66.xq
deleted file mode 100644
index 808b3a88..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-66.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-66 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting to xs:notation is not allowed. :)
-(:*******************************************************:)
-xs:NOTATION(QName('example.com', 'p:foo')) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-660.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-660.xq
deleted file mode 100644
index 3e4e5fbe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-660.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-660 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:duration is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:duration
- eq
- xs:duration("P1Y2M3DT10H30M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-661.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-661.xq
deleted file mode 100644
index 993fca69..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-661.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-661 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:duration as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-662.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-662.xq
deleted file mode 100644
index cb7ef34a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-662.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-662 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:yearMonthDuration is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:yearMonthDuration
- ne
- xs:yearMonthDuration("P1Y12M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-663.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-663.xq
deleted file mode 100644
index 5594e725..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-663.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-663 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:yearMonthDuration as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-664.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-664.xq
deleted file mode 100644
index c69e35bb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-664.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-664 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:dayTimeDuration is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:dayTimeDuration
- ne
- xs:dayTimeDuration("P3DT2H") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-665.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-665.xq
deleted file mode 100644
index cf00b99d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-665.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-665 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:dayTimeDuration as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-666.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-666.xq
deleted file mode 100644
index b7199c01..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-666.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-666 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-667.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-667.xq
deleted file mode 100644
index e04111e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-667.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-667 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-668.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-668.xq
deleted file mode 100644
index 99241b3a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-668.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-668 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-669.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-669.xq
deleted file mode 100644
index 58a5320e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-669.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-669 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-67.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-67.xq
deleted file mode 100644
index 1dfad98d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-67.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-67 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting to xs:QName where the cardinality is wrong. :)
-(:*******************************************************:)
-() cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-670.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-670.xq
deleted file mode 100644
index 30f0fda4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-670.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-670 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-671.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-671.xq
deleted file mode 100644
index 561c483a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-671.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-671 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-672.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-672.xq
deleted file mode 100644
index 9099de5b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-672.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-672 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-673.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-673.xq
deleted file mode 100644
index 6fc89987..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-673.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-673 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-674.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-674.xq
deleted file mode 100644
index 5a124a7d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-674.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-674 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-675.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-675.xq
deleted file mode 100644
index cf520a6a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-675.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-675 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-676.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-676.xq
deleted file mode 100644
index 2da81a09..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-676.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-676 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-677.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-677.xq
deleted file mode 100644
index fc5897c7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-677.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-677 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-678.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-678.xq
deleted file mode 100644
index 6141ddd7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-678.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-678 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-679.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-679.xq
deleted file mode 100644
index 18da562f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-679.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-679 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-68.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-68.xq
deleted file mode 100644
index 54564d9f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-68.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-68 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Input when casting to xs:QName must be a string literal. :)
-(:*******************************************************:)
-3 cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-680.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-680.xq
deleted file mode 100644
index 41704fc9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-680.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-680 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-681.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-681.xq
deleted file mode 100644
index cdc503cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-681.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-681 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-682.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-682.xq
deleted file mode 100644
index d4ca080e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-682.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-682 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-683.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-683.xq
deleted file mode 100644
index 03a86760..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-683.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-683 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-684.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-684.xq
deleted file mode 100644
index e8119151..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-684.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-684 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-685.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-685.xq
deleted file mode 100644
index b9eda628..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-685.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-685 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-686.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-686.xq
deleted file mode 100644
index 190440b4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-686.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-686 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-687.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-687.xq
deleted file mode 100644
index 2287afe6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-687.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-687 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-688.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-688.xq
deleted file mode 100644
index 2a52bef4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-688.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-688 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-689.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-689.xq
deleted file mode 100644
index 860d76b3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-689.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-689 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-69.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-69.xq
deleted file mode 100644
index de9d427c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-69.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-69 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Input when casting to xs:QName must be a string literal. :)
-(:*******************************************************:)
-. cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-690.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-690.xq
deleted file mode 100644
index 9e8c1619..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-690.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-690 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:duration to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:duration("P1Y2M3DT10H30M") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-691.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-691.xq
deleted file mode 100644
index 812bf72c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-691.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-691 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-692.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-692.xq
deleted file mode 100644
index 67f0ef50..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-692.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-692 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:duration as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:duration("P1Y2M3DT10H30M") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-693.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-693.xq
deleted file mode 100644
index 63c6a8e0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-693.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-693 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:yearMonthDuration constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:yearMonthDuration() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-694.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-694.xq
deleted file mode 100644
index 21936bcb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-694.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-694 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:yearMonthDuration constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:yearMonthDuration(
- "P1Y12M"
- ,
-
- "P1Y12M"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-695.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-695.xq
deleted file mode 100644
index 9b851399..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-695.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-695 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:yearMonthDuration constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:yearMonthDuration("P1Y12M")), 3, 1) instance of xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-696.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-696.xq
deleted file mode 100644
index 3537af52..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-696.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-696 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:yearMonthDuration. :)
-(:*******************************************************:)
-xs:yearMonthDuration("
- P1Y12M
- ")
- eq
- xs:yearMonthDuration("
- P1Y12M
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-697.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-697.xq
deleted file mode 100644
index 28c45ff3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-697.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-697 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:yearMonthDuration. :)
-(:*******************************************************:)
-xs:yearMonthDuration("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-698.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-698.xq
deleted file mode 100644
index 883bacc7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-698.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-698 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "P1Y12M" . :)
-(:*******************************************************:)
-xs:yearMonthDuration(xs:untypedAtomic(
- "P1Y12M"
- )) eq xs:yearMonthDuration("P1Y12M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-699.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-699.xq
deleted file mode 100644
index edbb9760..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-699.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-699 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:yearMonthDuration, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:yearMonthDuration("P1Y12M")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-7.xq
deleted file mode 100644
index 9f456d3f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-7.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-7 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: 'cast as' where the type is invalid. :)
-(:*******************************************************:)
-'string' cast as xs:anyType \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-70.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-70.xq
deleted file mode 100644
index 346d3c0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-70.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-70 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting a xs:QName value to xs:QName is possible. :)
-(:*******************************************************:)
-(xs:QName("local-name") cast as xs:QName) eq xs:QName("local-name") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-700.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-700.xq
deleted file mode 100644
index 62b5d910..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-700.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-700 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-701.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-701.xq
deleted file mode 100644
index fca20a24..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-701.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-701 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-702.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-702.xq
deleted file mode 100644
index d5465362..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-702.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-702 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-703.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-703.xq
deleted file mode 100644
index d965e1aa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-703.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-703 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-704.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-704.xq
deleted file mode 100644
index cef5f4c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-704.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-704 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-705.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-705.xq
deleted file mode 100644
index e1e438a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-705.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-705 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-706.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-706.xq
deleted file mode 100644
index 67c8e884..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-706.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-706 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-707.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-707.xq
deleted file mode 100644
index d3505ed9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-707.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-707 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-708.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-708.xq
deleted file mode 100644
index a7725bcd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-708.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-708 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-709.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-709.xq
deleted file mode 100644
index 65ec5480..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-709.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-709 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-71.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-71.xq
deleted file mode 100644
index 17835d2a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-71.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-71 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Casting xs:untypedAtomic to xs:QName is an error. :)
-(:*******************************************************:)
-xs:untypedAtomic("ncname") cast as xs:QName? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-710.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-710.xq
deleted file mode 100644
index 70638230..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-710.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-710 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-711.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-711.xq
deleted file mode 100644
index cfeede15..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-711.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-711 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-712.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-712.xq
deleted file mode 100644
index d239ff5c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-712.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-712 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:duration is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:duration
- ne
- xs:duration("P1Y2M3DT10H30M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-713.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-713.xq
deleted file mode 100644
index c9fb224b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-713.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-713 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:duration as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-714.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-714.xq
deleted file mode 100644
index 3d93dc94..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-714.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-714 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:yearMonthDuration is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:yearMonthDuration
- eq
- xs:yearMonthDuration("P1Y12M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-715.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-715.xq
deleted file mode 100644
index 1738e481..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-715.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-715 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:yearMonthDuration as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-716.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-716.xq
deleted file mode 100644
index 9e223bfd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-716.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-716 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:dayTimeDuration is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:dayTimeDuration
- ne
- xs:dayTimeDuration("P3DT2H") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-717.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-717.xq
deleted file mode 100644
index b0a4d20e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-717.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-717 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:dayTimeDuration as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-718.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-718.xq
deleted file mode 100644
index 8955dad8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-718.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-718 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-719.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-719.xq
deleted file mode 100644
index f44e2386..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-719.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-719 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-72.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-72.xq
deleted file mode 100644
index b6c0581f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-72.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-72 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `"example.com/" cast as xs:anyURI eq xs:anyURI('example.com/')`. :)
-(:*******************************************************:)
-"example.com/" cast as xs:anyURI eq
- xs:anyURI('example.com/') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-720.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-720.xq
deleted file mode 100644
index 7f40a58c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-720.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-720 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-721.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-721.xq
deleted file mode 100644
index edabcd97..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-721.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-721 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-722.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-722.xq
deleted file mode 100644
index 94205a73..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-722.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-722 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-723.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-723.xq
deleted file mode 100644
index b87303ce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-723.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-723 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-724.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-724.xq
deleted file mode 100644
index b04a9d27..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-724.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-724 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-725.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-725.xq
deleted file mode 100644
index 2ac0f775..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-725.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-725 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-726.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-726.xq
deleted file mode 100644
index a3c68630..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-726.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-726 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-727.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-727.xq
deleted file mode 100644
index 9984e8bc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-727.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-727 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-728.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-728.xq
deleted file mode 100644
index 50261332..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-728.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-728 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-729.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-729.xq
deleted file mode 100644
index c55bbbda..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-729.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-729 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-73.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-73.xq
deleted file mode 100644
index 2f075654..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-73.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-73 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:untypedAtomic("example.com/") cast as xs:anyURI eq xs:anyURI('example.com/')`. :)
-(:*******************************************************:)
-xs:untypedAtomic("example.com/") cast as xs:anyURI eq
- xs:anyURI('example.com/') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-730.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-730.xq
deleted file mode 100644
index 8f17c78b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-730.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-730 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-731.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-731.xq
deleted file mode 100644
index 5953b04c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-731.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-731 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-732.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-732.xq
deleted file mode 100644
index 9a9b9363..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-732.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-732 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-733.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-733.xq
deleted file mode 100644
index 07bf5ce0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-733.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-733 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-734.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-734.xq
deleted file mode 100644
index d9078381..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-734.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-734 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-735.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-735.xq
deleted file mode 100644
index ea446fbd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-735.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-735 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-736.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-736.xq
deleted file mode 100644
index 737595ae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-736.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-736 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-737.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-737.xq
deleted file mode 100644
index 6cd3b16b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-737.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-737 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-738.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-738.xq
deleted file mode 100644
index 132719b0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-738.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-738 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-739.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-739.xq
deleted file mode 100644
index 35227a92..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-739.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-739 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-74.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-74.xq
deleted file mode 100644
index f9564de0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-74.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-74 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:anyURI("example.com/") cast as xs:anyURI eq xs:anyURI('example.com/')`. :)
-(:*******************************************************:)
-xs:anyURI("example.com/") cast as xs:anyURI eq
- xs:anyURI('example.com/') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-740.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-740.xq
deleted file mode 100644
index 2c52801b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-740.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-740 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-741.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-741.xq
deleted file mode 100644
index afebf640..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-741.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-741 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-742.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-742.xq
deleted file mode 100644
index 786b44a2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-742.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-742 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:yearMonthDuration to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:yearMonthDuration("P1Y12M") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-743.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-743.xq
deleted file mode 100644
index 7aba4ea0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-743.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-743 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-744.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-744.xq
deleted file mode 100644
index b556e979..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-744.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-744 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:yearMonthDuration as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:yearMonthDuration("P1Y12M") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-745.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-745.xq
deleted file mode 100644
index ac3e2c2b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-745.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-745 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:dayTimeDuration constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:dayTimeDuration() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-746.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-746.xq
deleted file mode 100644
index a2a389c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-746.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-746 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:dayTimeDuration constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:dayTimeDuration(
- "P3DT2H"
- ,
-
- "P3DT2H"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-747.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-747.xq
deleted file mode 100644
index 7974ac5f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-747.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-747 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:dayTimeDuration constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:dayTimeDuration("P3DT2H")), 3, 1) instance of xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-748.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-748.xq
deleted file mode 100644
index cf0da392..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-748.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-748 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:dayTimeDuration. :)
-(:*******************************************************:)
-xs:dayTimeDuration("
- P3DT2H
- ")
- eq
- xs:dayTimeDuration("
- P3DT2H
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-749.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-749.xq
deleted file mode 100644
index d7bcbef9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-749.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-749 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:dayTimeDuration. :)
-(:*******************************************************:)
-xs:dayTimeDuration("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-75.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-75.xq
deleted file mode 100644
index 86196d8d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-75.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-75 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:double(3) eq 3`. :)
-(:*******************************************************:)
-xs:double(3) eq 3 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-750.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-750.xq
deleted file mode 100644
index 0df83c25..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-750.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-750 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "P3DT2H" . :)
-(:*******************************************************:)
-xs:dayTimeDuration(xs:untypedAtomic(
- "P3DT2H"
- )) eq xs:dayTimeDuration("P3DT2H") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-751.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-751.xq
deleted file mode 100644
index 025c794f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-751.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-751 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:dayTimeDuration, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:dayTimeDuration("P3DT2H")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-752.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-752.xq
deleted file mode 100644
index 7a7d1d2c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-752.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-752 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-753.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-753.xq
deleted file mode 100644
index 2a2f94ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-753.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-753 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-754.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-754.xq
deleted file mode 100644
index e50face0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-754.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-754 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-755.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-755.xq
deleted file mode 100644
index 32850a07..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-755.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-755 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-756.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-756.xq
deleted file mode 100644
index 212d4c0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-756.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-756 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-757.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-757.xq
deleted file mode 100644
index fa3eb219..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-757.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-757 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-758.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-758.xq
deleted file mode 100644
index a99e8084..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-758.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-758 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-759.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-759.xq
deleted file mode 100644
index a60c8fc9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-759.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-759 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-76.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-76.xq
deleted file mode 100644
index f1d6d138..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-76.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-76 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:double(3.1) eq 3.1`. :)
-(:*******************************************************:)
-xs:double(3.1) eq 3.1 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-760.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-760.xq
deleted file mode 100644
index 9b1ae4e1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-760.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-760 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-761.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-761.xq
deleted file mode 100644
index 0bb953f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-761.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-761 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-762.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-762.xq
deleted file mode 100644
index f181242b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-762.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-762 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-763.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-763.xq
deleted file mode 100644
index f78b2f13..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-763.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-763 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-764.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-764.xq
deleted file mode 100644
index 0b81b0f8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-764.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-764 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:duration is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:duration
- ne
- xs:duration("P1Y2M3DT10H30M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-765.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-765.xq
deleted file mode 100644
index 18a12d0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-765.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-765 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:duration as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") castable as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-766.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-766.xq
deleted file mode 100644
index 85d2a2bb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-766.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-766 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:yearMonthDuration is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:yearMonthDuration
- ne
- xs:yearMonthDuration("P1Y12M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-767.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-767.xq
deleted file mode 100644
index 69a8ebcf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-767.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-767 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:yearMonthDuration as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") castable as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-768.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-768.xq
deleted file mode 100644
index 1e6591c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-768.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-768 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:dayTimeDuration is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:dayTimeDuration
- eq
- xs:dayTimeDuration("P3DT2H") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-769.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-769.xq
deleted file mode 100644
index d9bdfaaa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-769.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-769 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:dayTimeDuration as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") castable as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-77.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-77.xq
deleted file mode 100644
index 842df98b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-77.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-77 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:double(6) instance of xs:double`. :)
-(:*******************************************************:)
-xs:double(6) instance of xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-770.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-770.xq
deleted file mode 100644
index c302669b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-770.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-770 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-771.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-771.xq
deleted file mode 100644
index 07226d3e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-771.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-771 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-772.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-772.xq
deleted file mode 100644
index 16277980..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-772.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-772 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-773.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-773.xq
deleted file mode 100644
index 211296f8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-773.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-773 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-774.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-774.xq
deleted file mode 100644
index 99d9ddbe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-774.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-774 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-775.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-775.xq
deleted file mode 100644
index 4a28121b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-775.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-775 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-776.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-776.xq
deleted file mode 100644
index 659cfe98..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-776.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-776 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-777.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-777.xq
deleted file mode 100644
index 7c240e7a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-777.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-777 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-778.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-778.xq
deleted file mode 100644
index bb21add1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-778.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-778 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-779.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-779.xq
deleted file mode 100644
index 45e73dbb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-779.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-779 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-78.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-78.xq
deleted file mode 100644
index f08fd4dc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-78.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-78 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:double("INF")) eq "INF"`. :)
-(:*******************************************************:)
-xs:string(xs:double("INF")) eq "INF" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-780.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-780.xq
deleted file mode 100644
index 742d2c72..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-780.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-780 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-781.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-781.xq
deleted file mode 100644
index 0abb6d62..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-781.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-781 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-782.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-782.xq
deleted file mode 100644
index f99c96a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-782.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-782 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-783.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-783.xq
deleted file mode 100644
index 5991872a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-783.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-783 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-784.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-784.xq
deleted file mode 100644
index 6b3348ef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-784.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-784 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-785.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-785.xq
deleted file mode 100644
index 055c4624..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-785.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-785 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-786.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-786.xq
deleted file mode 100644
index 97b718bf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-786.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-786 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-787.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-787.xq
deleted file mode 100644
index d0fdb66c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-787.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-787 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-788.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-788.xq
deleted file mode 100644
index d834fa18..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-788.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-788 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-789.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-789.xq
deleted file mode 100644
index 5aeb7b5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-789.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-789 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-79.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-79.xq
deleted file mode 100644
index 0713eefa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-79.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-79 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:double("-INF")) eq "-INF"`. :)
-(:*******************************************************:)
-xs:string(xs:double("-INF")) eq "-INF" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-790.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-790.xq
deleted file mode 100644
index c3ed1109..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-790.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-790 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-791.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-791.xq
deleted file mode 100644
index 62d4be17..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-791.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-791 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-792.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-792.xq
deleted file mode 100644
index d28b567b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-792.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-792 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-793.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-793.xq
deleted file mode 100644
index b80d412c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-793.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-793 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-794.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-794.xq
deleted file mode 100644
index fe5511c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-794.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-794 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dayTimeDuration to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:dayTimeDuration("P3DT2H") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-795.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-795.xq
deleted file mode 100644
index ef0053f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-795.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-795 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-796.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-796.xq
deleted file mode 100644
index 1497f715..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-796.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-796 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dayTimeDuration as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:dayTimeDuration("P3DT2H") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-797.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-797.xq
deleted file mode 100644
index e95663a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-797.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-797 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:dateTime constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:dateTime() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-798.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-798.xq
deleted file mode 100644
index e71557e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-798.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-798 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:dateTime constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:dateTime(
- "2002-10-10T12:00:00-05:00"
- ,
-
- "2002-10-10T12:00:00-05:00"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-799.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-799.xq
deleted file mode 100644
index 0a972d45..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-799.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-799 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:dateTime constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:dateTime("2002-10-10T12:00:00-05:00")), 3, 1) instance of xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-8.xq
deleted file mode 100644
index b124275c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-8.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-8 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A prefix is used which isn't declared. :)
-(:*******************************************************:)
-3 cast as prefixDoesNotExist:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-80.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-80.xq
deleted file mode 100644
index 0f73cba2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-80.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-80 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:float(3) eq 3`. :)
-(:*******************************************************:)
-xs:float(3) eq 3 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-800.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-800.xq
deleted file mode 100644
index d9cd31c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-800.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-800 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:dateTime. :)
-(:*******************************************************:)
-xs:dateTime("
- 2002-10-10T12:00:00-05:00
- ")
- eq
- xs:dateTime("
- 2002-10-10T12:00:00-05:00
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-801.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-801.xq
deleted file mode 100644
index be6b24d2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-801.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-801 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:dateTime. :)
-(:*******************************************************:)
-xs:dateTime("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-802.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-802.xq
deleted file mode 100644
index 458de8bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-802.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-802 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "2002-10-10T12:00:00-05:00" . :)
-(:*******************************************************:)
-xs:dateTime(xs:untypedAtomic(
- "2002-10-10T12:00:00-05:00"
- )) eq xs:dateTime("2002-10-10T12:00:00-05:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-803.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-803.xq
deleted file mode 100644
index 8011addf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-803.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-803 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:dateTime, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:dateTime("2002-10-10T12:00:00-05:00")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-804.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-804.xq
deleted file mode 100644
index 1a5b1177..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-804.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-804 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-805.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-805.xq
deleted file mode 100644
index 6c2ae956..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-805.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-805 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-806.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-806.xq
deleted file mode 100644
index 75459fc9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-806.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-806 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-807.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-807.xq
deleted file mode 100644
index 5c40736f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-807.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-807 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-808.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-808.xq
deleted file mode 100644
index 025acf79..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-808.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-808 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-809.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-809.xq
deleted file mode 100644
index 37d0d0ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-809.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-809 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-81.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-81.xq
deleted file mode 100644
index fbb6a1ce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-81.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-81 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:float(3.1) eq 3.1`. :)
-(:*******************************************************:)
-xs:float(3.1) eq 3.1 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-810.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-810.xq
deleted file mode 100644
index 4b4e2a95..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-810.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-810 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-811.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-811.xq
deleted file mode 100644
index 206250d7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-811.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-811 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-812.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-812.xq
deleted file mode 100644
index dacf4812..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-812.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-812 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-813.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-813.xq
deleted file mode 100644
index a397b71e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-813.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-813 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-814.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-814.xq
deleted file mode 100644
index 012972b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-814.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-814 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-815.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-815.xq
deleted file mode 100644
index 1c36deef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-815.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-815 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-816.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-816.xq
deleted file mode 100644
index 4ca44fad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-816.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-816 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-817.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-817.xq
deleted file mode 100644
index 008df6de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-817.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-817 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-818.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-818.xq
deleted file mode 100644
index 2efd24c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-818.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-818 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-819.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-819.xq
deleted file mode 100644
index 425bf422..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-819.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-819 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-82.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-82.xq
deleted file mode 100644
index d1b8abf3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-82.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-82 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:float(6) instance of xs:float`. :)
-(:*******************************************************:)
-xs:float(6) instance of xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-820.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-820.xq
deleted file mode 100644
index 4ddde20d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-820.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-820 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-821.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-821.xq
deleted file mode 100644
index dc563e7c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-821.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-821 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-822.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-822.xq
deleted file mode 100644
index f394a0d8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-822.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-822 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:dateTime is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:dateTime
- eq
- xs:dateTime("2002-10-10T12:00:00-05:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-823.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-823.xq
deleted file mode 100644
index 5b2cc089..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-823.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-823 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:dateTime as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-824.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-824.xq
deleted file mode 100644
index 2a91c85b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-824.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-824 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:time is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:time
- ne
- xs:time("03:20:00-05:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-825.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-825.xq
deleted file mode 100644
index 9dacd3fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-825.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-825 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:time as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-826.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-826.xq
deleted file mode 100644
index 5ee7c4a1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-826.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-826 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:date is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:date
- ne
- xs:date("2004-10-13") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-827.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-827.xq
deleted file mode 100644
index 52c8ae26..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-827.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-827 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:date as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-828.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-828.xq
deleted file mode 100644
index 9852ef48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-828.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-828 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:gYearMonth is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:gYearMonth
- ne
- xs:gYearMonth("1999-11") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-829.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-829.xq
deleted file mode 100644
index 70baad4e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-829.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-829 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:gYearMonth as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-83.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-83.xq
deleted file mode 100644
index da4adf23..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-83.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-83 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:float("INF")) eq "INF"`. :)
-(:*******************************************************:)
-xs:string(xs:float("INF")) eq "INF" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-830.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-830.xq
deleted file mode 100644
index dab39f56..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-830.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-830 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:gYear is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:gYear
- ne
- xs:gYear("1999") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-831.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-831.xq
deleted file mode 100644
index 5550b2d2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-831.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-831 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:gYear as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-832.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-832.xq
deleted file mode 100644
index 17799ce9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-832.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-832 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:gMonthDay is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:gMonthDay
- ne
- xs:gMonthDay("--11-13") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-833.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-833.xq
deleted file mode 100644
index 451665c7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-833.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-833 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:gMonthDay as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-834.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-834.xq
deleted file mode 100644
index a33791e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-834.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-834 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:gDay is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:gDay
- ne
- xs:gDay("---03") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-835.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-835.xq
deleted file mode 100644
index 0d3ac0da..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-835.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-835 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:gDay as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-836.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-836.xq
deleted file mode 100644
index 41708c92..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-836.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-836 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:gMonth is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:gMonth
- ne
- xs:gMonth("--11") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-837.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-837.xq
deleted file mode 100644
index 1fae2835..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-837.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-837 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:gMonth as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-838.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-838.xq
deleted file mode 100644
index c3ef162d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-838.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-838 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-839.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-839.xq
deleted file mode 100644
index 9b94d1b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-839.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-839 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-84.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-84.xq
deleted file mode 100644
index cf6d6a40..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-84.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-84 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:string(xs:float("-INF")) eq "-INF"`. :)
-(:*******************************************************:)
-xs:string(xs:float("-INF")) eq "-INF" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-840.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-840.xq
deleted file mode 100644
index 6aba5eca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-840.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-840 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-841.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-841.xq
deleted file mode 100644
index b151d639..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-841.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-841 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-842.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-842.xq
deleted file mode 100644
index 9dd63cfe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-842.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-842 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-843.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-843.xq
deleted file mode 100644
index b2c455aa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-843.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-843 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-844.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-844.xq
deleted file mode 100644
index 886a76ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-844.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-844 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-845.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-845.xq
deleted file mode 100644
index b44a8252..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-845.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-845 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-846.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-846.xq
deleted file mode 100644
index 2d3c1f45..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-846.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-846 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:dateTime to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:dateTime("2002-10-10T12:00:00-05:00") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-847.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-847.xq
deleted file mode 100644
index 02eb5f0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-847.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-847 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-848.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-848.xq
deleted file mode 100644
index 453241b1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-848.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-848 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:dateTime as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:dateTime("2002-10-10T12:00:00-05:00") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-849.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-849.xq
deleted file mode 100644
index 6ee0729f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-849.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-849 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:time constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:time() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-85.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-85.xq
deleted file mode 100644
index 8ffe0aba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-85.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-85 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:decimal(3) eq 3`. :)
-(:*******************************************************:)
-xs:decimal(3) eq 3 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-850.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-850.xq
deleted file mode 100644
index 091aff8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-850.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-850 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:time constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:time(
- "03:20:00-05:00"
- ,
-
- "03:20:00-05:00"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-851.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-851.xq
deleted file mode 100644
index 6943aabe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-851.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-851 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:time constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:time("03:20:00-05:00")), 3, 1) instance of xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-852.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-852.xq
deleted file mode 100644
index cdac4dd8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-852.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-852 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:time. :)
-(:*******************************************************:)
-xs:time("
- 03:20:00-05:00
- ")
- eq
- xs:time("
- 03:20:00-05:00
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-853.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-853.xq
deleted file mode 100644
index ee592295..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-853.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-853 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:time. :)
-(:*******************************************************:)
-xs:time("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-854.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-854.xq
deleted file mode 100644
index 59749f5c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-854.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-854 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "03:20:00-05:00" . :)
-(:*******************************************************:)
-xs:time(xs:untypedAtomic(
- "03:20:00-05:00"
- )) eq xs:time("03:20:00-05:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-855.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-855.xq
deleted file mode 100644
index aafebfd4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-855.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-855 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:time, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:time("03:20:00-05:00")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-856.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-856.xq
deleted file mode 100644
index 6a90a380..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-856.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-856 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-857.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-857.xq
deleted file mode 100644
index 25fd22b6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-857.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-857 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-858.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-858.xq
deleted file mode 100644
index 2bd4e39f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-858.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-858 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-859.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-859.xq
deleted file mode 100644
index db0064b6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-859.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-859 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-86.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-86.xq
deleted file mode 100644
index e4bcb0b3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-86.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-86 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:decimal(3.1) eq 3.1`. :)
-(:*******************************************************:)
-xs:decimal(3.1) eq 3.1 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-860.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-860.xq
deleted file mode 100644
index 715f0c8c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-860.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-860 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-861.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-861.xq
deleted file mode 100644
index fd2c9884..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-861.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-861 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-862.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-862.xq
deleted file mode 100644
index 9e738fb4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-862.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-862 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-863.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-863.xq
deleted file mode 100644
index 8c9aae14..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-863.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-863 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-864.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-864.xq
deleted file mode 100644
index 25dad34d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-864.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-864 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-865.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-865.xq
deleted file mode 100644
index 6b67065f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-865.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-865 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-866.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-866.xq
deleted file mode 100644
index d69a0275..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-866.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-866 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-867.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-867.xq
deleted file mode 100644
index a5ce7d3c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-867.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-867 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-868.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-868.xq
deleted file mode 100644
index 1c9756cc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-868.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-868 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-869.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-869.xq
deleted file mode 100644
index 1e71a780..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-869.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-869 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-87.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-87.xq
deleted file mode 100644
index a6ed16f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-87.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-87 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:decimal(6) instance of xs:decimal`. :)
-(:*******************************************************:)
-xs:decimal(6) instance of xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-870.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-870.xq
deleted file mode 100644
index 02d00655..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-870.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-870 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-871.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-871.xq
deleted file mode 100644
index 4e9c6161..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-871.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-871 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-872.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-872.xq
deleted file mode 100644
index 2bfc0f18..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-872.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-872 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-873.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-873.xq
deleted file mode 100644
index 463ca04f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-873.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-873 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-874.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-874.xq
deleted file mode 100644
index 1ddb650d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-874.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-874 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-875.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-875.xq
deleted file mode 100644
index 84d25e6c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-875.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-875 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-876.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-876.xq
deleted file mode 100644
index 16dc091a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-876.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-876 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:time is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:time
- eq
- xs:time("03:20:00-05:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-877.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-877.xq
deleted file mode 100644
index 51a8758e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-877.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-877 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:time as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") castable as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-878.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-878.xq
deleted file mode 100644
index 8d519ca9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-878.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-878 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-879.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-879.xq
deleted file mode 100644
index 12fb8e0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-879.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-879 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-88.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-88.xq
deleted file mode 100644
index 3b0bfd32..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-88.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-88 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:integer(3) eq 3`. :)
-(:*******************************************************:)
-xs:integer(3) eq 3 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-880.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-880.xq
deleted file mode 100644
index 5a551282..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-880.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-880 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:gYearMonth isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-881.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-881.xq
deleted file mode 100644
index 5c2d29a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-881.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-881 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:gYearMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:gYearMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-882.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-882.xq
deleted file mode 100644
index fd21282c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-882.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-882 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-883.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-883.xq
deleted file mode 100644
index 117976dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-883.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-883 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-884.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-884.xq
deleted file mode 100644
index 17d21c32..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-884.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-884 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-885.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-885.xq
deleted file mode 100644
index 25b4b564..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-885.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-885 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-886.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-886.xq
deleted file mode 100644
index b65fa685..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-886.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-886 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-887.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-887.xq
deleted file mode 100644
index d4ae3ceb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-887.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-887 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-888.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-888.xq
deleted file mode 100644
index d4fd22cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-888.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-888 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-889.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-889.xq
deleted file mode 100644
index d7c1e8d1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-889.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-889 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-89.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-89.xq
deleted file mode 100644
index bfe96d17..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-89.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-89 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:integer(3.1) eq 3`. :)
-(:*******************************************************:)
-xs:integer(3.1) eq 3 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-890.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-890.xq
deleted file mode 100644
index ff72e05e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-890.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-890 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-891.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-891.xq
deleted file mode 100644
index 72667991..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-891.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-891 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-892.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-892.xq
deleted file mode 100644
index 8ef05f2d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-892.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-892 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-893.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-893.xq
deleted file mode 100644
index e03280d2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-893.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-893 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-894.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-894.xq
deleted file mode 100644
index bcc4578d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-894.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-894 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-895.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-895.xq
deleted file mode 100644
index 76ad6aa9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-895.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-895 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-896.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-896.xq
deleted file mode 100644
index 55eca66c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-896.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-896 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-897.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-897.xq
deleted file mode 100644
index c909ca04..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-897.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-897 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-898.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-898.xq
deleted file mode 100644
index 887f976e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-898.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-898 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:time to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:time("03:20:00-05:00") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-899.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-899.xq
deleted file mode 100644
index b677c336..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-899.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-899 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-9.xq
deleted file mode 100644
index 1563f3b0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-9.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-9 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A type is specified which doesn't exist. :)
-(:*******************************************************:)
-3 cast as xs:doesNotExist \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-90.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-90.xq
deleted file mode 100644
index c3a7d072..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-90.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-90 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Test that when casting xs:decimal to xs:integer that conversion happens. :)
-(:*******************************************************:)
-xs:integer(3.1) eq 3 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-900.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-900.xq
deleted file mode 100644
index d827e0c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-900.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-900 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:time as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:time("03:20:00-05:00") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-901.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-901.xq
deleted file mode 100644
index 4c79bfae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-901.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-901 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:date constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:date() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-902.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-902.xq
deleted file mode 100644
index ac08e886..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-902.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-902 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:date constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:date(
- "2004-10-13"
- ,
-
- "2004-10-13"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-903.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-903.xq
deleted file mode 100644
index dc9c0032..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-903.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-903 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:date constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:date("2004-10-13")), 3, 1) instance of xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-904.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-904.xq
deleted file mode 100644
index 84ab4079..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-904.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-904 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:date. :)
-(:*******************************************************:)
-xs:date("
- 2004-10-13
- ")
- eq
- xs:date("
- 2004-10-13
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-905.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-905.xq
deleted file mode 100644
index 45f90da1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-905.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-905 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:date. :)
-(:*******************************************************:)
-xs:date("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-906.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-906.xq
deleted file mode 100644
index 547c06ae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-906.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-906 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "2004-10-13" . :)
-(:*******************************************************:)
-xs:date(xs:untypedAtomic(
- "2004-10-13"
- )) eq xs:date("2004-10-13") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-907.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-907.xq
deleted file mode 100644
index 7b37edfb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-907.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-907 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:date, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:date("2004-10-13")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-908.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-908.xq
deleted file mode 100644
index 307a462a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-908.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-908 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-909.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-909.xq
deleted file mode 100644
index 16a96503..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-909.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-909 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:date("2004-10-13") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-91.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-91.xq
deleted file mode 100644
index 5581089d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-91.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-91 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:integer(6) instance of xs:integer`. :)
-(:*******************************************************:)
-xs:integer(6) instance of xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-910.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-910.xq
deleted file mode 100644
index e4aa29a8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-910.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-910 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-911.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-911.xq
deleted file mode 100644
index c021ddf3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-911.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-911 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:date("2004-10-13") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-912.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-912.xq
deleted file mode 100644
index 40f5f8eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-912.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-912 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-913.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-913.xq
deleted file mode 100644
index 8b6b043a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-913.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-913 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-914.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-914.xq
deleted file mode 100644
index 94a00583..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-914.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-914 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-915.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-915.xq
deleted file mode 100644
index be926085..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-915.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-915 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-916.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-916.xq
deleted file mode 100644
index 28651230..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-916.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-916 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-917.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-917.xq
deleted file mode 100644
index 3a121635..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-917.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-917 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-918.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-918.xq
deleted file mode 100644
index 922095c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-918.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-918 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-919.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-919.xq
deleted file mode 100644
index 0ddb666d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-919.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-919 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-92.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-92.xq
deleted file mode 100644
index 7cb242ad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-92.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-92 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:integer(6) instance of xs:decimal`. :)
-(:*******************************************************:)
-xs:integer(6) instance of xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-920.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-920.xq
deleted file mode 100644
index b1c61182..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-920.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-920 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-921.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-921.xq
deleted file mode 100644
index 180782ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-921.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-921 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-922.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-922.xq
deleted file mode 100644
index 3753870c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-922.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-922 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-923.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-923.xq
deleted file mode 100644
index c0272903..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-923.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-923 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-924.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-924.xq
deleted file mode 100644
index e729cd5e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-924.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-924 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-925.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-925.xq
deleted file mode 100644
index 88ff8a0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-925.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-925 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-926.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-926.xq
deleted file mode 100644
index 3bb070eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-926.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-926 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:dateTime is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:dateTime
- ne
- xs:dateTime("2002-10-10T12:00:00-05:00") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-927.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-927.xq
deleted file mode 100644
index a09bace6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-927.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-927 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:dateTime as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:date("2004-10-13") castable as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-928.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-928.xq
deleted file mode 100644
index f2f47184..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-928.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-928 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-929.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-929.xq
deleted file mode 100644
index 77d96703..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-929.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-929 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-93.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-93.xq
deleted file mode 100644
index 7919f7a8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-93.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-93 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:hexBinary("FFF")`. :)
-(:*******************************************************:)
-xs:hexBinary("FFF") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-930.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-930.xq
deleted file mode 100644
index d1eff3f8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-930.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-930 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:date is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:date
- eq
- xs:date("2004-10-13") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-931.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-931.xq
deleted file mode 100644
index f4347147..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-931.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-931 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:date as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:date("2004-10-13") castable as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-932.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-932.xq
deleted file mode 100644
index b892ac43..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-932.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-932 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:gYearMonth is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:gYearMonth
- ne
- xs:gYearMonth("1999-11") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-933.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-933.xq
deleted file mode 100644
index e2f19126..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-933.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-933 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:gYearMonth as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:date("2004-10-13") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-934.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-934.xq
deleted file mode 100644
index fc238426..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-934.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-934 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:gYear is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:gYear
- ne
- xs:gYear("1999") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-935.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-935.xq
deleted file mode 100644
index 33f1859d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-935.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-935 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:gYear as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:date("2004-10-13") castable as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-936.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-936.xq
deleted file mode 100644
index e6fcc3c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-936.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-936 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:gMonthDay is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:gMonthDay
- ne
- xs:gMonthDay("--11-13") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-937.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-937.xq
deleted file mode 100644
index df4eaf04..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-937.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-937 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:gMonthDay as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:date("2004-10-13") castable as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-938.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-938.xq
deleted file mode 100644
index 7216dd9f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-938.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-938 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:gDay is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:gDay
- ne
- xs:gDay("---03") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-939.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-939.xq
deleted file mode 100644
index 34c437cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-939.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-939 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:gDay as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:date("2004-10-13") castable as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-94.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-94.xq
deleted file mode 100644
index 1865e9c1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-94.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-94 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:hexBinary("FFxF")`. :)
-(:*******************************************************:)
-xs:hexBinary("FFxF") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-940.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-940.xq
deleted file mode 100644
index 2b4700e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-940.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-940 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:gMonth is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:gMonth
- ne
- xs:gMonth("--11") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-941.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-941.xq
deleted file mode 100644
index 40531f6d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-941.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-941 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:gMonth as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:date("2004-10-13") castable as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-942.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-942.xq
deleted file mode 100644
index b1ab0c9d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-942.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-942 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-943.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-943.xq
deleted file mode 100644
index 7d2fe294..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-943.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-943 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-944.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-944.xq
deleted file mode 100644
index 54644817..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-944.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-944 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-945.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-945.xq
deleted file mode 100644
index b89d4081..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-945.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-945 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-946.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-946.xq
deleted file mode 100644
index adb20b1a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-946.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-946 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-947.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-947.xq
deleted file mode 100644
index fd4fc8e5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-947.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-947 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-948.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-948.xq
deleted file mode 100644
index d58eecb2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-948.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-948 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:anyURI isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-949.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-949.xq
deleted file mode 100644
index 0dc9d007..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-949.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-949 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:anyURI as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:anyURI) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-95.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-95.xq
deleted file mode 100644
index df4be030..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-95.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-95 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:hexBinary("0xFF")`. :)
-(:*******************************************************:)
-xs:hexBinary("0xFF") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-950.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-950.xq
deleted file mode 100644
index 344fedea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-950.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-950 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:date to xs:QName isn't allowed. :)
-(:*******************************************************:)
-xs:date("2004-10-13") cast as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-951.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-951.xq
deleted file mode 100644
index 15377507..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-951.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-951 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as source type and xs:QName as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-952.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-952.xq
deleted file mode 100644
index 867e9433..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-952.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-952 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:date as sourceType and xs:NOTATION should fail due to it involving xs:NOTATION. :)
-(:*******************************************************:)
-not(xs:date("2004-10-13") castable as xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-953.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-953.xq
deleted file mode 100644
index 78c47a8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-953.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-953 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:gYearMonth constructor function must be passed exactly one argument, not zero. :)
-(:*******************************************************:)
-xs:gYearMonth() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-954.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-954.xq
deleted file mode 100644
index 24b4c858..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-954.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-954 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: The xs:gYearMonth constructor function must be passed exactly one argument, not two. :)
-(:*******************************************************:)
-xs:gYearMonth(
- "1999-11"
- ,
-
- "1999-11"
- ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-955.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-955.xq
deleted file mode 100644
index be916f51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-955.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-955 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Verify with 'instance of' that the xs:gYearMonth constructor function produces values of the correct type. The subsequence() function makes it more difficult for optimizers to take short cuts based on static type information. :)
-(:*******************************************************:)
-
- subsequence(("dummy", 1.1, xs:gYearMonth("1999-11")), 3, 1) instance of xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-956.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-956.xq
deleted file mode 100644
index 5a84ca86..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-956.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-956 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: A simple test exercising the whitespace facet for type xs:gYearMonth. :)
-(:*******************************************************:)
-xs:gYearMonth("
- 1999-11
- ")
- eq
- xs:gYearMonth("
- 1999-11
- ")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-957.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-957.xq
deleted file mode 100644
index 3c88e784..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-957.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-957 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: An empty string is not a valid lexical representation of xs:gYearMonth. :)
-(:*******************************************************:)
-xs:gYearMonth("")
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-958.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-958.xq
deleted file mode 100644
index 29d1990e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-958.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-958 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Cast a simple xs:untypedAtomic value to "1999-11" . :)
-(:*******************************************************:)
-xs:gYearMonth(xs:untypedAtomic(
- "1999-11"
- )) eq xs:gYearMonth("1999-11") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-959.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-959.xq
deleted file mode 100644
index cca5d3e0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-959.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-959 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: It is not possible to extract an Effective Boolean Value from the type xs:gYearMonth, with the boolean() function. :)
-(:*******************************************************:)
-boolean(xs:gYearMonth("1999-11")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-96.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-96.xq
deleted file mode 100644
index 9fdce5f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-96.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-96 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:hexBinary("F")`. :)
-(:*******************************************************:)
-xs:hexBinary("F") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-960.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-960.xq
deleted file mode 100644
index 689f79d7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-960.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-960 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:untypedAtomic is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:untypedAtomic
- ne
- xs:untypedAtomic("an arbitrary string(untypedAtomic source)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-961.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-961.xq
deleted file mode 100644
index b3020a5c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-961.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-961 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:untypedAtomic as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-962.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-962.xq
deleted file mode 100644
index 2fa5d30d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-962.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-962 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:string is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:string
- ne
- xs:string("an arbitrary string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-963.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-963.xq
deleted file mode 100644
index e3f0cea3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-963.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-963 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:string as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-964.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-964.xq
deleted file mode 100644
index 2eb80e36..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-964.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-964 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:float isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-965.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-965.xq
deleted file mode 100644
index b417cb73..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-965.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-965 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:float as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-966.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-966.xq
deleted file mode 100644
index c8054887..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-966.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-966 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:double isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:double \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-967.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-967.xq
deleted file mode 100644
index 6e0e8a76..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-967.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-967 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:double as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-968.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-968.xq
deleted file mode 100644
index ba5d84db..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-968.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-968 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:decimal isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-969.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-969.xq
deleted file mode 100644
index 8fad2641..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-969.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-969 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:decimal as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-97.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-97.xq
deleted file mode 100644
index a1cf535a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-97.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-97 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:hexBinary("x")`. :)
-(:*******************************************************:)
-xs:hexBinary("x") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-970.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-970.xq
deleted file mode 100644
index 6fdc06f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-970.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-970 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:integer isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-971.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-971.xq
deleted file mode 100644
index 10e638c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-971.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-971 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:integer as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-972.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-972.xq
deleted file mode 100644
index 5f6484fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-972.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-972 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:duration isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:duration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-973.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-973.xq
deleted file mode 100644
index 39409f13..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-973.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-973 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:duration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:duration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-974.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-974.xq
deleted file mode 100644
index e620b3b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-974.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-974 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:yearMonthDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:yearMonthDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-975.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-975.xq
deleted file mode 100644
index 5d779ae9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-975.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-975 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:yearMonthDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:yearMonthDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-976.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-976.xq
deleted file mode 100644
index 0e1dbd07..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-976.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-976 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:dayTimeDuration isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:dayTimeDuration \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-977.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-977.xq
deleted file mode 100644
index f4b390ad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-977.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-977 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:dayTimeDuration as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:dayTimeDuration) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-978.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-978.xq
deleted file mode 100644
index 57aeafc9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-978.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-978 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:dateTime isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:dateTime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-979.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-979.xq
deleted file mode 100644
index f686267f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-979.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-979 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:dateTime as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:dateTime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-98.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-98.xq
deleted file mode 100644
index fea841cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-98.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-98 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `exists(xs:hexBinary("Ab08bcFFAA08b6"))`. :)
-(:*******************************************************:)
-exists(xs:hexBinary("Ab08bcFFAA08b6")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-980.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-980.xq
deleted file mode 100644
index 47f1c2ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-980.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-980 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:time isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:time \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-981.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-981.xq
deleted file mode 100644
index 438c4007..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-981.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-981 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:time as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:time) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-982.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-982.xq
deleted file mode 100644
index 3a1f0d94..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-982.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-982 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:date isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:date \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-983.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-983.xq
deleted file mode 100644
index e27249b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-983.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-983 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:date as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:date) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-984.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-984.xq
deleted file mode 100644
index 8b5a2f39..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-984.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-984 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:gYearMonth is allowed and should always succeed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:gYearMonth
- eq
- xs:gYearMonth("1999-11") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-985.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-985.xq
deleted file mode 100644
index 3728a3de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-985.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-985 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:gYearMonth as target type should always evaluate to true. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") castable as xs:gYearMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-986.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-986.xq
deleted file mode 100644
index 77aa364e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-986.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-986 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:gYear isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:gYear \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-987.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-987.xq
deleted file mode 100644
index 265d842b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-987.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-987 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:gYear as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:gYear) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-988.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-988.xq
deleted file mode 100644
index 5246e328..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-988.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-988 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:gMonthDay isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:gMonthDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-989.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-989.xq
deleted file mode 100644
index 515f1826..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-989.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-989 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:gMonthDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:gMonthDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-99.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-99.xq
deleted file mode 100644
index 14022d96..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-99.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-99 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `exists(xs:hexBinary("FF"))`. :)
-(:*******************************************************:)
-exists(xs:hexBinary("FF")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-990.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-990.xq
deleted file mode 100644
index e02174d2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-990.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-990 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:gDay isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:gDay \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-991.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-991.xq
deleted file mode 100644
index 30b199cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-991.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-991 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:gDay as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:gDay) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-992.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-992.xq
deleted file mode 100644
index 32742599..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-992.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-992 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:gMonth isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:gMonth \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-993.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-993.xq
deleted file mode 100644
index 030c2b98..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-993.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-993 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:gMonth as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:gMonth) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-994.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-994.xq
deleted file mode 100644
index 75b5a381..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-994.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-994 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:boolean isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-995.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-995.xq
deleted file mode 100644
index c04745fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-995.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-995 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:boolean as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-996.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-996.xq
deleted file mode 100644
index 549d4387..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-996.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-996 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:base64Binary isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:base64Binary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-997.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-997.xq
deleted file mode 100644
index c5b0fa30..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-997.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-997 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:base64Binary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:base64Binary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-998.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-998.xq
deleted file mode 100644
index e7b8d6c5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-998.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-998 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: Casting from xs:gYearMonth to xs:hexBinary isn't allowed. :)
-(:*******************************************************:)
-xs:gYearMonth("1999-11") cast as xs:hexBinary \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-999.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-999.xq
deleted file mode 100644
index e0a79ea9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K-SeqExprCast-999.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCast-999 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:38+02:00 :)
-(: Purpose: 'castable as' involving xs:gYearMonth as source type and xs:hexBinary as target type should always evaluate to false. :)
-(:*******************************************************:)
-not(xs:gYearMonth("1999-11") castable as xs:hexBinary) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K2-SeqExprCast-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K2-SeqExprCast-1.xq
deleted file mode 100644
index 92c65903..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K2-SeqExprCast-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-SeqExprCast-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: Cast to xs:QName where the prefix is declared in the prolog. :)
-(:*******************************************************:)
-declare namespace myPrefix = "http://example.com/";
-"myPrefix:ncname" cast as xs:QName eq QName("http://example.com/", "anotherPrefix:ncname") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K2-SeqExprCast-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K2-SeqExprCast-2.xq
deleted file mode 100644
index d1204e92..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCast/K2-SeqExprCast-2.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-SeqExprCast-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: Casting the empty sequence to xs:QName? is ok. :)
-(:*******************************************************:)
-empty(() cast as xs:QName?) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-1.xq
deleted file mode 100644
index b6e2aaf4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-1.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: '+' nor '?' is allowed as a cardinality specifier in 'castable as'. :)
-(:*******************************************************:)
-'string' castable as xs:string* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-10.xq
deleted file mode 100644
index 9ece1140..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-10.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-10 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified. :)
-(:*******************************************************:)
-"notation is abstract" castable as xs:NOTATION \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-11.xq
deleted file mode 100644
index 362526de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-11.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-11 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified. :)
-(:*******************************************************:)
-() castable as xs:NOTATION \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-12.xq
deleted file mode 100644
index 23a1bf9e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-12 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified. :)
-(:*******************************************************:)
-(xs:double(1), xs:double(2), xs:double(3))
- castable as xs:double* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-13.xq
deleted file mode 100644
index 368b2153..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-13.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-13 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified, leading to a syntax error. :)
-(:*******************************************************:)
-'string' castable as item() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-14.xq
deleted file mode 100644
index edc89ead..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-14.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-14 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified, leading to a syntax error. :)
-(:*******************************************************:)
-'string' castable as node() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-15.xq
deleted file mode 100644
index 94d19e37..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-15.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-15 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified, leading to a syntax error. :)
-(:*******************************************************:)
-'string' castable as attribute() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-16.xq
deleted file mode 100644
index 62bf813e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-16.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-16 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified, leading to a syntax error. :)
-(:*******************************************************:)
-'string' castable as empty-sequence() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-17.xq
deleted file mode 100644
index 08b51c3e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-17.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-17 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not(QName("", "lname") castable as xs:integer)`. :)
-(:*******************************************************:)
-not(QName("", "lname") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-18.xq
deleted file mode 100644
index f0f1e224..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-18.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-18 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: When casting to xs:QName the source value can be a xs:QName value. :)
-(:*******************************************************:)
-QName("", "lname") castable as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-19.xq
deleted file mode 100644
index b67f2f04..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-19.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-19 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting an xs:string to xs:QName works. :)
-(:*******************************************************:)
-"ncname" castable as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-2.xq
deleted file mode 100644
index 7df1dd83..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-2.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: '+' nor '?' is allowed as a cardinality specifier in 'castable as'. :)
-(:*******************************************************:)
-'string' castable as xs:string+ \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-20.xq
deleted file mode 100644
index a6589d49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-20.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-20 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting an empty sequence to xs:QName does not work. :)
-(:*******************************************************:)
-not(() castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-21.xq
deleted file mode 100644
index aa0f841d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-21.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-21 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting an empty sequence to xs:QName? works. :)
-(:*******************************************************:)
-() castable as xs:QName? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-22.xq
deleted file mode 100644
index f82da9db..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-22.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-22 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Casting an xs:untypedAtomic to xs:QName does not work. :)
-(:*******************************************************:)
-not(xs:untypedAtomic("ncname") castable as xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-23.xq
deleted file mode 100644
index 02cba157..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-23.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-23 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not(("one", "two") castable as xs:string?)`. :)
-(:*******************************************************:)
-not(("one", "two") castable as xs:string?) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-24.xq
deleted file mode 100644
index a992669a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-24.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-24 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not('string' castable as xs:boolean)`. :)
-(:*******************************************************:)
-not('string' castable as xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-25.xq
deleted file mode 100644
index 7dc8ac34..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-25.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-25 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `'true' castable as xs:boolean`. :)
-(:*******************************************************:)
-'true' castable as xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-26.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-26.xq
deleted file mode 100644
index 6b5c3cc5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-26.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-26 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `xs:float(1) castable as xs:float`. :)
-(:*******************************************************:)
-xs:float(1) castable as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-27.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-27.xq
deleted file mode 100644
index b4206174..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-27.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-27 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `xs:float(1) castable as xs:untypedAtomic`. :)
-(:*******************************************************:)
-xs:float(1) castable as xs:untypedAtomic \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-28.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-28.xq
deleted file mode 100644
index b046ee0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-28.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-28 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `xs:float(1) castable as xs:string`. :)
-(:*******************************************************:)
-xs:float(1) castable as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-29.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-29.xq
deleted file mode 100644
index f895b29d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-29.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-29 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not(xs:anyURI("example.com/") castable as xs:integer)`. :)
-(:*******************************************************:)
-not(xs:anyURI("example.com/") castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-3.xq
deleted file mode 100644
index b16a3007..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-3.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-3 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: '+' nor '?' is allowed as a cardinality specifier in 'castable as'. :)
-(:*******************************************************:)
-("one", "two") castable as xs:string+ \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-30.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-30.xq
deleted file mode 100644
index 5363049b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-30.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-30 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not("three" castable as xs:float)`. :)
-(:*******************************************************:)
-not("three" castable as xs:float) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-31.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-31.xq
deleted file mode 100644
index 9f5f4ef6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-31.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-31 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not("three" castable as xs:integer)`. :)
-(:*******************************************************:)
-not("three" castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-32.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-32.xq
deleted file mode 100644
index fe749858..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-32.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-32 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not("three" castable as xs:decimal)`. :)
-(:*******************************************************:)
-not("three" castable as xs:decimal) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-33.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-33.xq
deleted file mode 100644
index 895faab4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-33.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-33 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not("three" castable as xs:double)`. :)
-(:*******************************************************:)
-not("three" castable as xs:double) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-34.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-34.xq
deleted file mode 100644
index bbeb205b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-34.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-34 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not((1, 2, 3) castable as xs:integer)`. :)
-(:*******************************************************:)
-not((1, 2, 3) castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-35.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-35.xq
deleted file mode 100644
index 67f07e16..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-35.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-35 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not(() castable as xs:integer)`. :)
-(:*******************************************************:)
-not(() castable as xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-36.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-36.xq
deleted file mode 100644
index 266cdcdc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-36.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-36 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `() castable as xs:integer?`. :)
-(:*******************************************************:)
-() castable as xs:integer? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-37.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-37.xq
deleted file mode 100644
index 54d25d49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-37.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-37 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `(1) castable as xs:integer?`. :)
-(:*******************************************************:)
-(1) castable as xs:integer? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-38.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-38.xq
deleted file mode 100644
index ceb652ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-38.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-38 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `not(("one", "two") castable as xs:string?)`. :)
-(:*******************************************************:)
-not(("one", "two") castable as xs:string?) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-4.xq
deleted file mode 100644
index a730a23c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-4.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-4 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: '+' nor '?' is allowed as a cardinality specifier in 'castable as'. :)
-(:*******************************************************:)
-'string' castable as xs:anyType* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-5.xq
deleted file mode 100644
index ec330715..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-5.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-5 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified. :)
-(:*******************************************************:)
-'string' castable as xs:anySimpleType \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-6.xq
deleted file mode 100644
index 01df6d6d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-6.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-6 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified. :)
-(:*******************************************************:)
-'string' castable as xs:untyped \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-7.xq
deleted file mode 100644
index d5789cc6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-7.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-7 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified. :)
-(:*******************************************************:)
-'string' castable as xs:anyAtomicType \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-8.xq
deleted file mode 100644
index 1c450b82..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-8.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-8 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified. :)
-(:*******************************************************:)
-"notation is abstract" castable as xs:NOTATION? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-9.xq
deleted file mode 100644
index dbb33efb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K-SeqExprCastable-9.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprCastable-9 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: An invalid type for 'castable as' is specified. :)
-(:*******************************************************:)
-() castable as xs:NOTATION? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K2-SeqExprCastable-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K2-SeqExprCastable-1.xq
deleted file mode 100644
index 944ed6c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K2-SeqExprCastable-1.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-SeqExprCastable-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: Testing castability to xs:QName where the cardinality is wrong. :)
-(:*******************************************************:)
-(QName("http://example.com/ANamespace", "ncname"),
- QName("http://example.com/ANamespace", "ncname2"),
- QName("http://example.com/ANamespace", "ncname3")) castable as xs:QName \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K2-SeqExprCastable-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K2-SeqExprCastable-2.xq
deleted file mode 100644
index 0837c87e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprCastable/K2-SeqExprCastable-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-SeqExprCastable-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: Testing castability to xs:QName where the cardinality is wrong(#2). :)
-(:*******************************************************:)
-(QName("http://example.com/ANamespace", "ncname"),
- QName("http://example.com/ANamespace", "ncname2"),
- QName("http://example.com/ANamespace", "ncname3")) castable as xs:QName? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-1.xq
deleted file mode 100644
index f638e4fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-1.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `1 instance of item()`. :)
-(:*******************************************************:)
-1 instance of item() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-10.xq
deleted file mode 100644
index 0acf6a51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-10.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-10 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `"a string" instance of xs:string`. :)
-(:*******************************************************:)
-"a string" instance of xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-11.xq
deleted file mode 100644
index a5dcac66..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-11.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-11 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not("false" instance of xs:boolean)`. :)
-(:*******************************************************:)
-not("false" instance of xs:boolean) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-12.xq
deleted file mode 100644
index 67d72ef3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-12.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-12 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `1.1 instance of xs:decimal`. :)
-(:*******************************************************:)
-1.1 instance of xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-13.xq
deleted file mode 100644
index 59cc4dd9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-13.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-13 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(1.1 instance of xs:integer)`. :)
-(:*******************************************************:)
-not(1.1 instance of xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-14.xq
deleted file mode 100644
index a8ceac4e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-14.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-14 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `xs:anyURI("http://www.example.com/") instance of xs:anyURI`. :)
-(:*******************************************************:)
-xs:anyURI("http://www.example.com/") instance of xs:anyURI \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-15.xq
deleted file mode 100644
index d6d8444d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-15.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-15 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(xs:anyURI("http://www.example.com/") instance of xs:string)`. :)
-(:*******************************************************:)
-not(xs:anyURI("http://www.example.com/") instance of xs:string) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-16.xq
deleted file mode 100644
index 8e72a0d9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-16.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-16 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not("a string" instance of xs:untypedAtomic)`. :)
-(:*******************************************************:)
-not("a string" instance of xs:untypedAtomic) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-17.xq
deleted file mode 100644
index 9ef77302..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-17.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-17 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(1, 2, 3, 4, 5) instance of xs:integer+`. :)
-(:*******************************************************:)
-(1, 2, 3, 4, 5) instance of xs:integer+ \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-18.xq
deleted file mode 100644
index e38e8ed1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-18.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-18 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not((1, 2, 3, 4, 5) instance of xs:integer)`. :)
-(:*******************************************************:)
-not((1, 2, 3, 4, 5) instance of xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-19.xq
deleted file mode 100644
index 582a4d3d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-19.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-19 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not((1, 2, 3, 4, 5) instance of xs:integer?)`. :)
-(:*******************************************************:)
-not((1, 2, 3, 4, 5) instance of xs:integer?) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-2.xq
deleted file mode 100644
index 096016ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-2.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: item() type with comment appearing inside the paranteses. :)
-(:*******************************************************:)
-1 instance of item((:comment:)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-20.xq
deleted file mode 100644
index 5ad34697..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-20.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-20 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(1, 2, 3, 4, 5) instance of xs:integer*`. :)
-(:*******************************************************:)
-(1, 2, 3, 4, 5) instance of xs:integer* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-21.xq
deleted file mode 100644
index 13b02bae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-21.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-21 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(1, 2, 3, 4, 5) instance of item()+`. :)
-(:*******************************************************:)
-(1, 2, 3, 4, 5) instance of item()+ \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-22.xq
deleted file mode 100644
index 5e4099d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-22.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-22 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not((1, 2, "a string", 4, 5) instance of xs:integer*)`. :)
-(:*******************************************************:)
-not((1, 2, "a string", 4, 5) instance of xs:integer*) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-23.xq
deleted file mode 100644
index b267641e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-23.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-23 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not((1, 2, 1.1, 4, 5) instance of xs:integer*)`. :)
-(:*******************************************************:)
-not((1, 2, 1.1, 4, 5) instance of xs:integer*) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-24.xq
deleted file mode 100644
index 6f0ab5f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-24.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-24 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not((1, 2, "a string", 4, 5) instance of xs:string*)`. :)
-(:*******************************************************:)
-not((1, 2, "a string", 4, 5) instance of xs:string*) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-25.xq
deleted file mode 100644
index 085effe6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-25.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-25 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(1, 2, "a string", 4, 5) instance of xs:anyAtomicType*`. :)
-(:*******************************************************:)
-(1, 2, "a string", 4, 5) instance of xs:anyAtomicType* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-26.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-26.xq
deleted file mode 100644
index 61a79187..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-26.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-26 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(1, 2, count("one"), 4, 5) instance of xs:integer+`. :)
-(:*******************************************************:)
-(1, 2, count("one"), 4, 5) instance of xs:integer+ \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-27.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-27.xq
deleted file mode 100644
index 76a08be8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-27.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-27 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(1 instance of text())`. :)
-(:*******************************************************:)
-not(1 instance of text()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-28.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-28.xq
deleted file mode 100644
index 7c3478a3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-28.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-28 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(1 instance of node())`. :)
-(:*******************************************************:)
-not(1 instance of node()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-29.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-29.xq
deleted file mode 100644
index 95a1f1d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-29.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-29 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(1 instance of element())`. :)
-(:*******************************************************:)
-not(1 instance of element()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-3.xq
deleted file mode 100644
index a2086faf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-3.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-3 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `1 instance of xs:integer`. :)
-(:*******************************************************:)
-1 instance of xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-30.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-30.xq
deleted file mode 100644
index f3e65523..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-30.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-30 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(1 instance of processing-instruction())`. :)
-(:*******************************************************:)
-not(1 instance of processing-instruction()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-31.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-31.xq
deleted file mode 100644
index ecd2c151..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-31.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-31 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(1 instance of comment())`. :)
-(:*******************************************************:)
-not(1 instance of comment()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-32.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-32.xq
deleted file mode 100644
index 65eb0a21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-32.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-32 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A comment appearing inside the paranteses of the sequence type text(). :)
-(:*******************************************************:)
-not(1 instance of text((:comment:))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-33.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-33.xq
deleted file mode 100644
index 42d2de57..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-33.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-33 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A comment appearing inside the paranteses of the sequence type node(). :)
-(:*******************************************************:)
-not(1 instance of node((:comment:))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-34.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-34.xq
deleted file mode 100644
index 79f41761..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-34.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-34 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A comment appearing inside the paranteses of the sequence type element(). :)
-(:*******************************************************:)
-not(1 instance of element((:comment:))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-35.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-35.xq
deleted file mode 100644
index 9363f593..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-35.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-35 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A comment appearing inside the paranteses of the sequence type processing-instruction(). :)
-(:*******************************************************:)
-not(1 instance of processing-instruction((:comment:))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-36.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-36.xq
deleted file mode 100644
index c75161ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-36.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-36 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A comment appearing inside the paranteses of the sequence type comment(). :)
-(:*******************************************************:)
-not(1 instance of comment((:comment:))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-37.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-37.xq
deleted file mode 100644
index f1d53c33..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-37.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-37 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(1 instance of empty-sequence())`. :)
-(:*******************************************************:)
-not(1 instance of empty-sequence()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-38.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-38.xq
deleted file mode 100644
index 5c8ab289..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-38.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-38 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not( (1, 2, 3) instance of empty-sequence())`. :)
-(:*******************************************************:)
-not( (1, 2, 3) instance of empty-sequence()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-39.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-39.xq
deleted file mode 100644
index b7140418..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-39.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-39 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `() instance of empty-sequence()`. :)
-(:*******************************************************:)
-() instance of empty-sequence() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-4.xq
deleted file mode 100644
index 9754709b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-4.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-4 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `1 instance of xs:decimal`. :)
-(:*******************************************************:)
-1 instance of xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-40.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-40.xq
deleted file mode 100644
index a3d651cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-40.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-40 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: Comment appearing inside the paranteses of empty-sequence(). :)
-(:*******************************************************:)
-() instance of empty-sequence((:comment:)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-41.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-41.xq
deleted file mode 100644
index fe67811c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-41.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-41 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(((()))) instance of empty-sequence()`. :)
-(:*******************************************************:)
-(((()))) instance of empty-sequence() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-42.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-42.xq
deleted file mode 100644
index ff9e61df..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-42.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-42 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `((), (), ()) instance of empty-sequence()`. :)
-(:*******************************************************:)
-((), (), ()) instance of empty-sequence() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-43.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-43.xq
deleted file mode 100644
index e9b3acf0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-43.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-43 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `((), "xs:string") instance of xs:string`. :)
-(:*******************************************************:)
-((), "xs:string") instance of xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-44.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-44.xq
deleted file mode 100644
index 99a6e2f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-44.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-44 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `("xs:string", (), "xs:string") instance of xs:string+`. :)
-(:*******************************************************:)
-("xs:string", (), "xs:string") instance of xs:string+ \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-45.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-45.xq
deleted file mode 100644
index 81e2e5cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-45.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-45 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `(1.1, (), 1) instance of xs:decimal+`. :)
-(:*******************************************************:)
-(1.1, (), 1) instance of xs:decimal+ \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-46.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-46.xq
deleted file mode 100644
index 7bfbd394..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-46.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-46 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not("a string" instance of xs:NOTATION)`. :)
-(:*******************************************************:)
-not("a string" instance of xs:NOTATION) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-47.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-47.xq
deleted file mode 100644
index a302da8e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-47.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-47 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not("a string" instance of xs:QName)`. :)
-(:*******************************************************:)
-not("a string" instance of xs:QName) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-48.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-48.xq
deleted file mode 100644
index 5f72957a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-48.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-48 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `1.1 instance of xs:decimal and not(1.1 instance of xs:integer)`. :)
-(:*******************************************************:)
-1.1 instance of xs:decimal and not(1.1 instance of xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-49.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-49.xq
deleted file mode 100644
index 55ddb1b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-49.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-49 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A type is referenced which doesn't exist. :)
-(:*******************************************************:)
-3 instance of prefixDoesNotExist:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-5.xq
deleted file mode 100644
index e691e961..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-5.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-5 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `1 instance of xs:integer?`. :)
-(:*******************************************************:)
-1 instance of xs:integer? \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-50.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-50.xq
deleted file mode 100644
index d67f69b3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-50.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-50 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A type is referenced which doesn't exist. :)
-(:*******************************************************:)
-3 instance of xs:doesNotExist \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-51.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-51.xq
deleted file mode 100644
index f68d5a2f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-51.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-51 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A type is referenced which doesn't exist. :)
-(:*******************************************************:)
-3 instance of xs:qname \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-52.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-52.xq
deleted file mode 100644
index f0aa5451..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-52.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-52 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A type is referenced which doesn't exist. :)
-(:*******************************************************:)
-3 instance of none \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-53.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-53.xq
deleted file mode 100644
index 68a382d5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-53.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-53 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A type is referenced which doesn't exist. :)
-(:*******************************************************:)
-3 instance of void \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-54.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-54.xq
deleted file mode 100644
index c464f2eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-54.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-54 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A type is referenced which doesn't exist. :)
-(:*******************************************************:)
-3 instance of none() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-55.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-55.xq
deleted file mode 100644
index 7677b969..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-55.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-55 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A type is referenced which doesn't exist. :)
-(:*******************************************************:)
-3 instance of void() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-56.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-56.xq
deleted file mode 100644
index cc69e784..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-56.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-56 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The fn:error() function in combination with 'instance of'. :)
-(:*******************************************************:)
-error() instance of xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-57.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-57.xq
deleted file mode 100644
index 1bfb8d73..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-57.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-57 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The fn:error() function in combination with 'instance of'. :)
-(:*******************************************************:)
-error() instance of xs:integer* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-58.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-58.xq
deleted file mode 100644
index 868523bf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-58.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-58 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The fn:error() function in combination with 'instance of'. :)
-(:*******************************************************:)
-error() instance of empty-sequence() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-59.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-59.xq
deleted file mode 100644
index 271ae2b6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-59.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-59 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The fn:error() function in combination with 'instance of'. :)
-(:*******************************************************:)
-(error(), 1) instance of empty-sequence() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-6.xq
deleted file mode 100644
index 024c7b7d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-6.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-6 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `1 instance of xs:integer+`. :)
-(:*******************************************************:)
-1 instance of xs:integer+ \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-60.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-60.xq
deleted file mode 100644
index fe1d80e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-60.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-60 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The fn:error() function in combination with 'instance of'. :)
-(:*******************************************************:)
-(1, error()) instance of xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-61.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-61.xq
deleted file mode 100644
index 80abd263..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-61.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-61 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The fn:error() function in combination with 'instance of'. :)
-(:*******************************************************:)
-(error(), 1) instance of xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-62.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-62.xq
deleted file mode 100644
index bcdbb6df..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-62.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-62 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The fn:error() function in combination with 'instance of'. :)
-(:*******************************************************:)
-(1, error()) instance of xs:integer* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-63.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-63.xq
deleted file mode 100644
index 16c809e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-63.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-63 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: The fn:error() function in combination with 'instance of'. :)
-(:*******************************************************:)
-(error(), 1) instance of xs:integer* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-64.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-64.xq
deleted file mode 100644
index 765536d2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-64.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-64 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `not(((10)div(3)) instance of xs:integer)`. :)
-(:*******************************************************:)
-not(((10)div(3)) instance of xs:integer) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-65.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-65.xq
deleted file mode 100644
index e7115215..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-65.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-65 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `((10)idiv(3)) instance of xs:integer`. :)
-(:*******************************************************:)
-((10)idiv(3)) instance of xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-66.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-66.xq
deleted file mode 100644
index 4e249d4b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-66.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-66 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `((10)mod(3)) instance of xs:integer`. :)
-(:*******************************************************:)
-((10)mod(3)) instance of xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-7.xq
deleted file mode 100644
index c888008d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-7.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-7 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `1 instance of xs:integer*`. :)
-(:*******************************************************:)
-1 instance of xs:integer* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-8.xq
deleted file mode 100644
index 916cc1ad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-8.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-8 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `false() instance of xs:boolean`. :)
-(:*******************************************************:)
-false() instance of xs:boolean \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-9.xq
deleted file mode 100644
index ade3662f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprInstanceOf/K-SeqExprInstanceOf-9.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprInstanceOf-9 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A test whose essence is: `false() instance of xs:anyAtomicType`. :)
-(:*******************************************************:)
-false() instance of xs:anyAtomicType \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-1.xq
deleted file mode 100644
index 7f86e564..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-1.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `3 treat as xs:string`. :)
-(:*******************************************************:)
-3 treat as xs:string \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-10.xq
deleted file mode 100644
index 1663c7b8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-10.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-10 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Exactly-one xs:integer does not match empty-sequence(). :)
-(:*******************************************************:)
-1 treat as empty-sequence() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-11.xq
deleted file mode 100644
index 86d89961..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-11.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-11 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Implementations using the static typing feature, may raise XPTY0004 because one of the operands to operator 'eq' has cardinality 'one-or-more'. :)
-(:*******************************************************:)
-("asda" treat as xs:string +) eq "asda" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-12.xq
deleted file mode 100644
index 200de859..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-12.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-12 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Implementations using the static typing feature, may raise XPTY0004 because one of the operands to operator 'eq' has cardinality 'zero-or-more'. :)
-(:*******************************************************:)
-("asda" treat as xs:string *) eq "asda" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-13.xq
deleted file mode 100644
index d6b290f6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-13.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-13 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: Implementations using the static typing feature, may raise XPTY0004 because one of the operands to the multiply-operator has cardinality 'zero-or-more'. :)
-(:*******************************************************:)
-(3 treat as xs:integer * * 3) eq 9 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-14.xq
deleted file mode 100644
index 6d8d4ed9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-14.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-14 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `(3 treat as xs:integer ? * 3) eq 9`. :)
-(:*******************************************************:)
-(3 treat as xs:integer ? * 3) eq 9 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-15.xq
deleted file mode 100644
index 7a1af07c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-15.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-15 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A complex 'treat as' expression, stressing parser and evaluation logic. Implementations supporting the static typing feature may issue XPTY0004. :)
-(:*******************************************************:)
-(4 treat as item() + - 5) = ((4 treat as item()+) - 5) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-16.xq
deleted file mode 100644
index e8572ef3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-16.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-16 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: '3 treat as item(' is a syntatically invalid expression. :)
-(:*******************************************************:)
-3 treat as item( \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-17.xq
deleted file mode 100644
index 7b89e514..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-17.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-17 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `(remove((5, 1e0), 2) treat as xs:integer) eq 5`. :)
-(:*******************************************************:)
-(remove((5, 1e0), 2) treat as xs:integer) eq 5 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-2.xq
deleted file mode 100644
index 6f20c941..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-2.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `xs:double("3") treat as xs:float`. :)
-(:*******************************************************:)
-xs:double("3") treat as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-3.xq
deleted file mode 100644
index e97da8ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-3.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-3 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `xs:anyURI("example.com/") treat as xs:float`. :)
-(:*******************************************************:)
-xs:anyURI("example.com/") treat as xs:float \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-4.xq
deleted file mode 100644
index f9507b8d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-4.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-4 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `3.0 treat as xs:integer`. :)
-(:*******************************************************:)
-3.0 treat as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-5.xq
deleted file mode 100644
index f828fa06..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-5.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-5 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `xs:integer(3) treat as xs:decimal instance of xs:integer`. :)
-(:*******************************************************:)
-xs:integer(3) treat as xs:decimal instance of xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-6.xq
deleted file mode 100644
index 43f91ac8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-6.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-6 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `"3" treat as xs:string eq '3'`. :)
-(:*******************************************************:)
-"3" treat as xs:string eq '3' \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-7.xq
deleted file mode 100644
index daee9594..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-7.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-7 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `xs:integer("3") treat as xs:decimal instance of xs:decimal`. :)
-(:*******************************************************:)
-xs:integer("3") treat as xs:decimal instance of xs:decimal \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-8.xq
deleted file mode 100644
index 0de696a3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-8.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-8 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A type is specified which doesn't exist. :)
-(:*******************************************************:)
-3 treat as prefixDoesNotExist:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-9.xq
deleted file mode 100644
index ea26d827..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K-SeqExprTreat-9.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-SeqExprTreat-9 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A type is specified which doesn't exist. :)
-(:*******************************************************:)
-3 treat as xs:doesNotExist \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K2-SeqExprTreat-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K2-SeqExprTreat-1.xq
deleted file mode 100644
index 56fdd0fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/SeqExprTreat/K2-SeqExprTreat-1.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-SeqExprTreat-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: A test whose essence is: `xs:decimal(3) treat as xs:integer`. :)
-(:*******************************************************:)
-xs:decimal(3) treat as xs:integer \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-1.xq
deleted file mode 100644
index 003947a1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-1.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(: Test: K-sequenceExprTypeswitch-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: typeswitch test where the sequence types only differs in cardinality. :)
-(:*******************************************************:)
-
- (typeswitch((1, 2))
- case xs:integer return -1
- case xs:integer+ return 1
- default return -2)
- eq 1
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-2.xq
deleted file mode 100644
index 1cffdaa0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-2.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(: Test: K-sequenceExprTypeswitch-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A string literal is of type xs:string, even though it can be promoted to xs:anyURI. :)
-(:*******************************************************:)
-
- (typeswitch("a string")
- case xs:anyURI return -1
- case xs:string return 1
- default return -2)
- eq 1
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-3.xq
deleted file mode 100644
index dc255957..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-3.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(: Test: K-sequenceExprTypeswitch-3 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: typeswitch test: A string literal is of type xs:string, even though it can be promoted to xs:untypedAtomic. :)
-(:*******************************************************:)
-
- (typeswitch("a string")
- case xs:untypedAtomic return -1
- case xs:string return 1
- default return -2)
- eq 1
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-4.xq
deleted file mode 100644
index 1254a93d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-4.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(:*******************************************************:)
-(: Test: K-sequenceExprTypeswitch-4 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A sequence of atomic items are not treated individually, but as a whole. :)
-(:*******************************************************:)
-
- (typeswitch((1, "a string"))
- case xs:integer return -1
- case xs:string return -2
- case xs:anyAtomicType+ return 1
- default return -3)
- eq 1
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-5.xq
deleted file mode 100644
index b6845430..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-5.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(: Test: K-sequenceExprTypeswitch-5 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A typeswitch scenario which in some implementations trigger certain optimization code paths. :)
-(:*******************************************************:)
-
- (typeswitch(((1, current-time())[1]))
- case element() return -1
- case xs:integer return 1
- default return -2)
- eq 1
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-6.xq
deleted file mode 100644
index cb663c20..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-6.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(: Test: K-sequenceExprTypeswitch-6 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A typeswitch scenario involving empty-sequence(). Both the 'xs:integer*' branch and the 'empty-sequnec()' branch are valid. :)
-(:*******************************************************:)
-
- (typeswitch(())
- case xs:integer* return 1
- case empty-sequence() return 1
- default return -2)
- eq 1
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-7.xq
deleted file mode 100644
index af9524e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-7.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(: Test: K-sequenceExprTypeswitch-7 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A typeswitch with an operand expression being the comma operator using no paranteses. :)
-(:*******************************************************:)
-
- (typeswitch(1, 2, 3)
- case xs:string+ return -1
- case xs:integer+ return 1
- default return -2)
- eq 1
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-8.xq
deleted file mode 100644
index ff511ceb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K-sequenceExprTypeswitch-8.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(: Test: K-sequenceExprTypeswitch-8 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:37+02:00 :)
-(: Purpose: A typeswitch where the case clauses will never be evaluated. In some implementations this trigger optimization code paths. :)
-(:*******************************************************:)
-
- (typeswitch(1, 2, current-time())
- case element() return -1
- case document-node() return -2
- default return 1)
- eq 1
- \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-1.xq
deleted file mode 100644
index 4027287c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-sequenceExprTypeswitch-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: Extract the EBV from the result of a typeswitch. :)
-(:*******************************************************:)
-boolean(typeswitch (current-time(), 1, 3e3, "foo")
- case node() return 0
- case xs:integer return 3
- case xs:anyAtomicType return true()
- default return -1) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-2.xq
deleted file mode 100644
index b2a00a3a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-sequenceExprTypeswitch-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: A default clause must be specified. :)
-(:*******************************************************:)
-typeswitch(current-time())
-case node() return 0
-case xs:integer return 3
-case xs:anyAtomicType return true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-3.xq
deleted file mode 100644
index 95b951e0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Expressions/seqExprTypes/sequenceExprTypeswitch/K2-sequenceExprTypeswitch-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-sequenceExprTypeswitch-3 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: Parenteses must be specified for the expression that's switched. :)
-(:*******************************************************:)
-typeswitch 1
-case node() return 0
-case xs:integer return 3
-case xs:anyAtomicType return true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-1.xq
deleted file mode 100644
index bc4f6b94..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-1.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-FalseFunc-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:40+02:00 :)
-(: Purpose: A test whose essence is: `false(1)`. :)
-(:*******************************************************:)
-false(1) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-2.xq
deleted file mode 100644
index c058b07f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-2.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-FalseFunc-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:40+02:00 :)
-(: Purpose: A test whose essence is: `false() eq false()`. :)
-(:*******************************************************:)
-false() eq false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-3.xq
deleted file mode 100644
index 9e2ab5ec..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FalseFunc/K-FalseFunc-3.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-FalseFunc-3 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:40+02:00 :)
-(: Purpose: A test whose essence is: `not(false())`. :)
-(:*******************************************************:)
-not(false()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-1.xq
deleted file mode 100644
index 42a47c31..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-1.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-FloorFunc-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `floor()`. :)
-(:*******************************************************:)
-floor() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-2.xq
deleted file mode 100644
index 7ccd6678..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-2.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-FloorFunc-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `floor(1, 2)`. :)
-(:*******************************************************:)
-floor(1, 2) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-3.xq
deleted file mode 100644
index 92eb3bd5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-3.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-FloorFunc-3 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `empty(floor(()))`. :)
-(:*******************************************************:)
-empty(floor(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-4.xq
deleted file mode 100644
index e569a941..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-4.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-FloorFunc-4 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `floor(10.5) eq 10`. :)
-(:*******************************************************:)
-floor(10.5) eq 10 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-5.xq
deleted file mode 100644
index aef8fd5e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-5.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-FloorFunc-5 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `floor(-10.5) eq -11`. :)
-(:*******************************************************:)
-floor(-10.5) eq -11 \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-6.xq
deleted file mode 100644
index 7041a2c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FloorFunc/K-FloorFunc-6.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(:*******************************************************:)
-(: Test: K-FloorFunc-6 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-10-05T18:29:39+02:00 :)
-(: Purpose: A test whose essence is: `floor("a string")`. :)
-(:*******************************************************:)
-floor("a string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-1.xq
deleted file mode 100644
index b5c848fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-1 :)
-(: Description: Evaluation of the ancestor-or-self axis for which the context node is not a node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(200)/ancestor-or-self::* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-10.xq
deleted file mode 100644
index 495712bb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-10 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "node after" expression with both operands the same (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor-or-self::works) >> ($input-context1/works/employee[1]/hours) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-11.xq
deleted file mode 100644
index e81057e8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-11 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "union " operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day/ancestor-or-self::overtime) | ($input-context1/works/employee[12]/*/day/ancestor-or-self::overtime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-12.xq
deleted file mode 100644
index 099343ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-12 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "union" operation. Both operands are different :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[1]/ancestor-or-self::overtime) | ($input-context1/works/employee[12]/*/day[2]/ancestor-or-self::overtime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-13.xq
deleted file mode 100644
index d41a7082..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-13 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "intersect" operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day/ancestor-or-self::employee) intersect ($input-context1/works/employee[12]/overtime/day/ancestor-or-self::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-14.xq
deleted file mode 100644
index aa6235f9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: ancestorself-14 :)
-(: Description: Evaluation of the ancestor-self axis that is part of an "except" operation. Both operands are the same. :)
-(: Uses fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(($input-context1/works/employee[12]/overtime/day[ancestor-or-self::overtime]) except ($input-context1/works/employee[12]/overtime/day[ancestor-or-self::overtime])) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-15.xq
deleted file mode 100644
index ec975234..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-15 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "except" operation. Both operands are different. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor-or-self::overtime]) except ($input-context1/works/employee[12]/overtime/day[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-16.xq
deleted file mode 100644
index 67d497ab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-16 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of a boolean expression ("and" and fn:true(). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor-or-self::overtime]) and fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-17.xq
deleted file mode 100644
index 6b890f1b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-17 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of a boolean expression ("and" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor-or-self::overtime]) and fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-18.xq
deleted file mode 100644
index 00fc4e75..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-18 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of a boolean expression ("or" and fn:true()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor-or-self::overtime]) or fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-19.xq
deleted file mode 100644
index 0bad387e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-19 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of a boolean expression ("or" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor-or-self::overtime]) or fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-2.xq
deleted file mode 100644
index 981cd914..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: ancestorself-2 :)
-(: Description: Evaluation of the ancestor-or-self axis for which the given node does not exists. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count($input-context1/works/employee[1]/ancestor-or-self::noSuchNode) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-20.xq
deleted file mode 100644
index f7b45a41..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-20 :)
-(: Description: Evaluation of the ancestor-or-self axis that used as part of the deep-equal-function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:deep-equal($input-context1/works/employee[12]/overtime/ancestor-or-self::works,$input-context1/works/employee[12]/overtime/ancestor-or-self::works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-21.xq
deleted file mode 100644
index 491dfa4b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-21.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: ancestorself-21 :)
-(: Description: Evaluation of the ancestor-or-self axis used together with a newly constructed element. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <anElement>Some Content</anElement>
-return
- $var/ancestor-or-self::* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-3.xq
deleted file mode 100644
index 1cecce64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-3 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "is" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor-or-self::works) is ($input-context1/works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-4.xq
deleted file mode 100644
index 781b03c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-4 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "is" expression (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor-or-self::works) is ($input-context1/works/employee[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-5.xq
deleted file mode 100644
index 8c227e09..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-5 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "node before" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor-or-self::works) << ($input-context1/works/employee[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-6.xq
deleted file mode 100644
index 146c83ef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-6 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "node before" expression and both operands are the same (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor-or-self::works) << ($input-context1/works/employee[1]/ancestor-or-self::works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-7.xq
deleted file mode 100644
index e8e77ac9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-7 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "node before" expression both operands are differents (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor-or-self::works) << ($input-context1/works/employee[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-8.xq
deleted file mode 100644
index 95eee966..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-8 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "node after" expression (returns true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]) >> ($input-context1/works/employee[1]/ancestor-or-self::works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-9.xq
deleted file mode 100644
index 92301b53..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/ancestorself-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestorself-9 :)
-(: Description: Evaluation of the ancestor-or-self axis that is part of an "node after" expression with both operands the same (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor-or-self::works) >> ($input-context1/works/employee[1]/ancestor-or-self::works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/unabbreviatedSyntax-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/unabbreviatedSyntax-11.xq
deleted file mode 100644
index f8cec598..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestor-or-selfAxis/unabbreviatedSyntax-11.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: unabbreviatedSyntax-11 :)
-(: Description: Evaluate selecting an ancestor or self (ancestor-or-self::employee)- Select the "employee" ancestors of the context node and if the :)
-(: context is "employee" select it as well.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[1]/hours)
- return $h/ancestor-or-self::employee \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-1.xq
deleted file mode 100644
index 0f0c4e97..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-1 :)
-(: Description: Evaluation of the ancestor axis for which the context node is not a node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(200)/ancestor::* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-10.xq
deleted file mode 100644
index f3dc1b7f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-10 :)
-(: Description: Evaluation of the ancestor axis that is part of an "node after" expression with both operands the same (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor::works) >> ($input-context1/works/employee[1]/hours) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-11.xq
deleted file mode 100644
index 4a134f2e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-11 :)
-(: Description: Evaluation of the ancestor axis that is part of an "union " operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day/ancestor::overtime) | ($input-context1/works/employee[12]/*/day/ancestor::overtime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-12.xq
deleted file mode 100644
index 42dedcf2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-12 :)
-(: Description: Evaluation of the ancestor axis that is part of an "union" operation. Both operands are different :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[1]/ancestor::overtime) | ($input-context1/works/employee[12]/*/day[2]/ancestor::overtime) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-13.xq
deleted file mode 100644
index 14e69982..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-13 :)
-(: Description: Evaluation of the ancestor axis that is part of an "intersect" operation. Both operands are the same. :)
-(: Uses fn:count to avoid empty file :)
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day/ancestor::employee) intersect ($input-context1/works/employee[12]/overtime/day/ancestor::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-14.xq
deleted file mode 100644
index 3a47db79..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: ancestor-14 :)
-(: Description: Evaluation of the ancestor axis that is part of an "except" operation. Both operands are the same. :)
-(: Uses fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(($input-context1/works/employee[12]/overtime/day[ancestor::overtime]) except ($input-context1/works/employee[12]/overtime/day[ancestor::overtime])) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-15.xq
deleted file mode 100644
index 8c1f0a6b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-15.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: ancestor-15 :)
-(: Description: Evaluation of the ancestor axis that is part of an "except" operation. Both operands are different. :)
-(: Uses fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor::overtime]) except ($input-context1/works/employee[12]/overtime/day[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-16.xq
deleted file mode 100644
index a29f262d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-16 :)
-(: Description: Evaluation of the ancestor axis that is part of a boolean expression ("and" and fn:true(). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor::overtime]) and fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-17.xq
deleted file mode 100644
index e641153a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-17 :)
-(: Description: Evaluation of the ancestor axis that is part of a boolean expression ("and" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor::overtime]) and fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-18.xq
deleted file mode 100644
index 14e52830..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-18 :)
-(: Description: Evaluation of the ancestor axis that is part of a boolean expression ("or" and fn:true()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor::overtime]) or fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-19.xq
deleted file mode 100644
index 40360f91..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-19 :)
-(: Description: Evaluation of the ancestor axis that is part of a boolean expression ("or" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/overtime/day[ancestor::overtime]) or fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-2.xq
deleted file mode 100644
index 0129327d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: ancestor-2 :)
-(: Description: Evaluation of the ancestor axis for which the given node does not exists. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count($input-context1/works/employee[1]/ancestor::noSuchNode) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-20.xq
deleted file mode 100644
index 403f0a0a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-20 :)
-(: Description: Evaluation of the ancestor axis that used as part of the deep-equal-function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:deep-equal($input-context1/works/employee[12]/overtime/ancestor::works,$input-context1/works/employee[12]/overtime/ancestor::works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-21.xq
deleted file mode 100644
index 4f335e5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-21.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: ancestor-21 :)
-(: Description: Evaluation of the ancestor axis used together with a newly constructed element. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <anElement>Some Content</anElement>
-return
- fn:count($var/ancestor::*) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-3.xq
deleted file mode 100644
index 9ffc00d5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-3 :)
-(: Description: Evaluation of the ancestor axis that is part of an "is" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor::works) is ($input-context1/works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-4.xq
deleted file mode 100644
index 6aedc429..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-4 :)
-(: Description: Evaluation of the ancestor axis that is part of an "is" expression (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor::works) is ($input-context1/works/employee[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-5.xq
deleted file mode 100644
index f56cbd76..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-5 :)
-(: Description: Evaluation of the ancestor axis that is part of an "node before" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor::works) << ($input-context1/works/employee[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-6.xq
deleted file mode 100644
index cad1c1e1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-6 :)
-(: Description: Evaluation of the ancestor axis that is part of an "node before" expression and both operands are the same (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor::works) << ($input-context1/works/employee[1]/ancestor::works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-7.xq
deleted file mode 100644
index b8cc3a11..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-7 :)
-(: Description: Evaluation of the ancestor axis that is part of an "node before" expression both operands are differents (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor::works) << ($input-context1/works/employee[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-8.xq
deleted file mode 100644
index 8c1d1abf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-8 :)
-(: Description: Evaluation of the ancestor axis that is part of an "node after" expression (returns true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]) >> ($input-context1/works/employee[1]/ancestor::works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-9.xq
deleted file mode 100644
index 8cefbac0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/ancestor-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: ancestor-9 :)
-(: Description: Evaluation of the ancestor axis that is part of an "node after" expression with both operands the same (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[1]/ancestor::works) >> ($input-context1/works/employee[1]/ancestor::works) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/unabbreviatedSyntax-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/unabbreviatedSyntax-10.xq
deleted file mode 100644
index bf49aa4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/ancestorAxis/unabbreviatedSyntax-10.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: unabbreviatedSyntax-10 :)
-(: Description: Evaluate selecting an ancestor (ancestor::employee)- Select the "employee" ancestors of the context node:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[1]/hours)
- return $h/ancestor::employee \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-1.xq
deleted file mode 100644
index a2cefc4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-1 :)
-(: Description: Evaluation of the following-sibling axis for which the context node is not a node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(200)/following-sibling::* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-10.xq
deleted file mode 100644
index ca409951..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-10 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "node after" expression with different operands (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]) >> ($input-context1/works[1]/employee[12]/following-sibling::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-11.xq
deleted file mode 100644
index f1cf6dc5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-11 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "union " operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[1]/following-sibling::day) | ($input-context1/works/employee[12]/*/day[1]/following-sibling::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-12.xq
deleted file mode 100644
index 4674e389..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-12 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "union" operation. Both operands are different :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[1]/following-sibling::day) | ($input-context1/works/employee[12]/*/day[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-13.xq
deleted file mode 100644
index 115346d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-13 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "intersect" operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/overtime[1]/day[1]/following-sibling::day) intersect ($input-context1/works[1]/employee[12]/overtime[1]/day[1]/following-sibling::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-14.xq
deleted file mode 100644
index a1db6e96..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: followingsibling-14 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "except" operation. Both operands are the same. :)
-(: Uses fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(($input-context1/works[1]/employee[12]/following-sibling::employee) except ($input-context1/works[1]/employee[12]/following-sibling::employee)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-15.xq
deleted file mode 100644
index 4d88c8c2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-15 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "except" operation. Both operands are different. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/overtime/day) except ($input-context1/works[1]/employee[12]/overtime/day[1]/following-sibling::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-16.xq
deleted file mode 100644
index 505012fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-16 :)
-(: Description: Evaluation of the following-sibling axis that is part of a boolean expression ("and" and fn:true(). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following-sibling::employee) and fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-17.xq
deleted file mode 100644
index d52c711e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-17 :)
-(: Description: Evaluation of the following-sibling axis that is part of a boolean expression ("and" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following-sibling::employee) and fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-18.xq
deleted file mode 100644
index a0ffb2fa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-18 :)
-(: Description: Evaluation of the following-sibling axis that is part of a boolean expression ("or" and fn:true()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following-sibling::employee) or fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-19.xq
deleted file mode 100644
index 3b7ccaf8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-19 :)
-(: Description: Evaluation of the following-sibling axis that is part of a boolean expression ("or" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following-sibling::employee) or fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-2.xq
deleted file mode 100644
index eb561980..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: followingsibling-2 :)
-(: Description: Evaluation of the following-sibling axis for which the given node does not exists. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count($input-context1/works/employee[1]/following-sibling::noSuchNode) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-20.xq
deleted file mode 100644
index daef9940..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-20 :)
-(: Description: Evaluation of the following-sibling axis that used as part of the deep-equal-function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:deep-equal($input-context1/works[1]/employee[12]/following-sibling::employee,$input-context1/works[1]/employee[12]/following-sibling::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-21.xq
deleted file mode 100644
index 8a90b036..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-21.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: following-21 :)
-(: Description: Evaluation of the following axis used together with a newly constructed element. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <anElement>Some Content</anElement>
-return
- fn:count($var/following::*) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-3.xq
deleted file mode 100644
index 6b9bc9e8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-3 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "is" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/following-sibling::employee) is ($input-context1/works/employee[13]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-4.xq
deleted file mode 100644
index 187844a0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-4 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "is" expression (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following-sibling::employee) is ($input-context1/works[1]/employee[12]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-5.xq
deleted file mode 100644
index 48ec4e37..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-5 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "node before" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/overtime/day[1]/following-sibling::day) << ($input-context1/works[1]/employee[13]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-6.xq
deleted file mode 100644
index 50b36ba8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-6 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "node before" expression and both operands are the same (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following-sibling::employee) << ($input-context1/works[1]/employee[12]/following-sibling::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-7.xq
deleted file mode 100644
index 4587893c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-7 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "node before" expression both operands are differents (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following-sibling::employee) << ($input-context1/works[1]/employee[12]/overtime[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-8.xq
deleted file mode 100644
index 6ebe25cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-8 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "node after" expression (returns true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[13]) >> ($input-context1/works[1]/employee[12]/overtime[1]/day[1]/following-sibling::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-9.xq
deleted file mode 100644
index d1a74992..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/followingsibling-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: followingsibling-9 :)
-(: Description: Evaluation of the following-sibling axis that is part of an "node after" expression with both operands the same (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following-sibling::employee) >> ($input-context1/works[1]/employee[12]/following-sibling::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/unabbreviatedSyntax-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/unabbreviatedSyntax-24.xq
deleted file mode 100644
index 7d971a28..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/following-siblingAxis/unabbreviatedSyntax-24.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: unabbreviatedSyntax-24 :)
-(: Description: Evaluate "following-sibling::employee[fn:position() = 1]". Selects the next employee sibling of the context node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[2])
- return $h/following-sibling::employee[fn:position() = 1] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-1.xq
deleted file mode 100644
index b29eb731..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-1 :)
-(: Description: Evaluation of the following axis for which the context node is not a node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(200)/following::* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-10.xq
deleted file mode 100644
index 527aba03..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-10 :)
-(: Description: Evaluation of the following axis that is part of an "node after" expression with different operands (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]) >> ($input-context1/works[1]/employee[12]/following::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-11.xq
deleted file mode 100644
index fb1aa786..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-11 :)
-(: Description: Evaluation of the following axis that is part of an "union " operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[1]/following::day) | ($input-context1/works/employee[12]/*/day[1]/following::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-12.xq
deleted file mode 100644
index cee86ff7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-12 :)
-(: Description: Evaluation of the following axis that is part of an "union" operation. Both operands are different :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[1]/following::day) | ($input-context1/works/employee[12]/*/day[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-13.xq
deleted file mode 100644
index 96e9738a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-13 :)
-(: Description: Evaluation of the following axis that is part of an "intersect" operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/overtime[1]/day[1]/following::day) intersect ($input-context1/works[1]/employee[12]/overtime[1]/day[1]/following::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-14.xq
deleted file mode 100644
index f75ef893..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: following-14 :)
-(: Description: Evaluation of the following axis that is part of an "except" operation. Both operands are the same. :)
-(: Uses fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(($input-context1/works[1]/employee[12]/following::employee) except ($input-context1/works[1]/employee[12]/following::employee)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-15.xq
deleted file mode 100644
index 7c76902a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-15 :)
-(: Description: Evaluation of the following axis that is part of an "except" operation. Both operands are different. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/overtime/day) except ($input-context1/works[1]/employee[12]/overtime/day[1]/following::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-16.xq
deleted file mode 100644
index 5f9a6f51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-16 :)
-(: Description: Evaluation of the following axis that is part of a boolean expression ("and" and fn:true(). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following::employee) and fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-17.xq
deleted file mode 100644
index 6a4e0433..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-17 :)
-(: Description: Evaluation of the following axis that is part of a boolean expression ("and" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following::employee) and fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-18.xq
deleted file mode 100644
index 13f0ffeb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-18 :)
-(: Description: Evaluation of the following axis that is part of a boolean expression ("or" and fn:true()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following::employee) or fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-19.xq
deleted file mode 100644
index 8660d199..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-19 :)
-(: Description: Evaluation of the following axis that is part of a boolean expression ("or" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following::employee) or fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-2.xq
deleted file mode 100644
index ceef9b77..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: following-2 :)
-(: Description: Evaluation of the following axis for which the given node does not exists. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count($input-context1/works/employee[1]/following::noSuchNode) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-20.xq
deleted file mode 100644
index 3e2c0740..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-20 :)
-(: Description: Evaluation of the following axis that used as part of the deep-equal-function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:deep-equal($input-context1/works[1]/employee[12]/following::employee,$input-context1/works[1]/employee[12]/following::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-21.xq
deleted file mode 100644
index 8a90b036..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-21.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: following-21 :)
-(: Description: Evaluation of the following axis used together with a newly constructed element. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <anElement>Some Content</anElement>
-return
- fn:count($var/following::*) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-3.xq
deleted file mode 100644
index 05200981..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-3 :)
-(: Description: Evaluation of the following axis that is part of an "is" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/following::employee) is ($input-context1/works/employee[13]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-4.xq
deleted file mode 100644
index 8e104ffc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-4 :)
-(: Description: Evaluation of the following axis that is part of an "is" expression (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following::employee) is ($input-context1/works[1]/employee[12]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-5.xq
deleted file mode 100644
index 22ff9623..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-5 :)
-(: Description: Evaluation of the following axis that is part of an "node before" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[11]/following::employee[1]) << ($input-context1/works[1]/employee[13]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-6.xq
deleted file mode 100644
index 7b30a2f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-6 :)
-(: Description: Evaluation of the following axis that is part of an "node before" expression and both operands are the same (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following::employee) << ($input-context1/works[1]/employee[12]/following::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-7.xq
deleted file mode 100644
index ed1ed8fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-7 :)
-(: Description: Evaluation of the following axis that is part of an "node before" expression both operands are differents (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following::employee) << ($input-context1/works[1]/employee[12]/overtime[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-8.xq
deleted file mode 100644
index febc6d07..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-8 :)
-(: Description: Evaluation of the following axis that is part of an "node after" expression (returns true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[13]) >> ($input-context1/works[1]/employee[12]/overtime[1]/day[1]/following::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-9.xq
deleted file mode 100644
index a105a244..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/followingAxis/following-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: following-9 :)
-(: Description: Evaluation of the following axis that is part of an "node after" expression with both operands the same (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/following::employee) >> ($input-context1/works[1]/employee[12]/following::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-1.xq
deleted file mode 100644
index 850ad6e2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-1 :)
-(: Description: Evaluation of the preceding-sibling axis for which the context node is not a node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(200)/preceding-sibling::* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-10.xq
deleted file mode 100644
index d76c5e8b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-10 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "node after" expression with different operands (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[13]) >> ($input-context1/works[1]/employee[2]/preceding-sibling::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-11.xq
deleted file mode 100644
index 8786bec1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-11 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "union " operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[2]/preceding-sibling::day) | ($input-context1/works/employee[12]/*/day[2]/preceding-sibling::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-12.xq
deleted file mode 100644
index 48e8702e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-12 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "union" operation. Both operands are different :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[2]/preceding-sibling::day) | ($input-context1/works/employee[12]/*/day[2]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-13.xq
deleted file mode 100644
index f680d4cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-13 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "intersect" operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/overtime[1]/day[2]/preceding-sibling::day) intersect ($input-context1/works[1]/employee[12]/overtime[1]/day[2]/preceding-sibling::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-14.xq
deleted file mode 100644
index 48544cb7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: preceding-sibling-14 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "except" operation. Both operands are the same. :)
-(: Uses fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(($input-context1/works[1]/employee[12]/preceding-sibling::employee) except ($input-context1/works[1]/employee[12]/preceding-sibling::employee)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-15.xq
deleted file mode 100644
index 9d830912..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-15 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "except" operation. Both operands are different. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/overtime/day) except ($input-context1/works[1]/employee[12]/overtime/day[2]/preceding-sibling::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-16.xq
deleted file mode 100644
index 32b10eb4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-16 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of a boolean expression ("and" and fn:true(). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/preceding-sibling::employee) and fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-17.xq
deleted file mode 100644
index 228871ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-17 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of a boolean expression ("and" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/preceding-sibling::employee) and fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-18.xq
deleted file mode 100644
index c9361f68..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-18 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of a boolean expression ("or" and fn:true()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/preceding-sibling::employee) or fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-19.xq
deleted file mode 100644
index bff2f010..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-19 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of a boolean expression ("or" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/preceding-sibling::employee) or fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-2.xq
deleted file mode 100644
index c943a2ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: preceding-sibling-2 :)
-(: Description: Evaluation of the preceding-sibling axis for which the given node does not exists. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count($input-context1/works/employee[1]/preceding-sibling::noSuchNode) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-20.xq
deleted file mode 100644
index 444f1dfb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-20 :)
-(: Description: Evaluation of the preceding-sibling axis that used as part of the deep-equal-function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:deep-equal($input-context1/works[1]/employee[12]/preceding-sibling::employee,$input-context1/works[1]/employee[12]/preceding-sibling::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-21.xq
deleted file mode 100644
index faa212e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-21.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: preceding-sibling-21 :)
-(: Description: Evaluation of the preceding-sibling axis used together with a newly constructed element. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <anElement>Some Content</anElement>
-return
- fn:count($var/preceding-sibling::*) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-3.xq
deleted file mode 100644
index e63da01d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-3 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "is" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[2]/preceding-sibling::employee) is ($input-context1/works/employee[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-4.xq
deleted file mode 100644
index 951ad0d7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-4 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "is" expression (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding-sibling::employee) is ($input-context1/works[1]/employee[2]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-5.xq
deleted file mode 100644
index 2ee787a8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-5 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "node before" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding-sibling::employee) << ($input-context1/works[1]/employee[2]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-6.xq
deleted file mode 100644
index f3b37840..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-6 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "node before" expression and both operands are the same (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding-sibling::employee) << ($input-context1/works[1]/employee[2]/preceding-sibling::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-7.xq
deleted file mode 100644
index 88c3fef2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-7 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "node before" expression both operands are differents (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding-sibling::employee) << ($input-context1/works[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-8.xq
deleted file mode 100644
index a1bab6a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-8 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of a "node after" expression (returns true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[13]) >> ($input-context1/works[1]/employee[12]/preceding-sibling::employee[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-9.xq
deleted file mode 100644
index e2971dbd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/preceding-sibling-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-sibling-9 :)
-(: Description: Evaluation of the preceding-sibling axis that is part of an "node after" expression with both operands the same (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding-sibling::employee) >> ($input-context1/works[1]/employee[2]/preceding-sibling::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/unabbreviatedSyntax-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/unabbreviatedSyntax-25.xq
deleted file mode 100644
index 85a5253f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/preceding-siblingAxis/unabbreviatedSyntax-25.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: unabbreviatedSyntax-25 :)
-(: Description: Evaluate "preceding-sibling::employee[fn:position() = 1]". Selects the previous employee sibling of the context node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[2])
- return $h/preceding-sibling::employee[fn:position() = 1] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-1.xq
deleted file mode 100644
index 00a57135..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-1 :)
-(: Description: Evaluation of the preceding axis for which the context node is not a node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(200)/preceding::* \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-10.xq
deleted file mode 100644
index ec2af6e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-10 :)
-(: Description: Evaluation of the preceding axis that is part of an "node after" expression with different operands (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[13]) >> ($input-context1/works[1]/employee[2]/preceding::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-11.xq
deleted file mode 100644
index 3903944e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-11 :)
-(: Description: Evaluation of the preceding axis that is part of an "union " operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[2]/preceding::day) | ($input-context1/works/employee[12]/*/day[2]/preceding::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-12.xq
deleted file mode 100644
index c824e644..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-12 :)
-(: Description: Evaluation of the preceding axis that is part of an "union" operation. Both operands are different :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[12]/*/day[2]/preceding::day) | ($input-context1/works/employee[12]/*/day[2]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-13.xq
deleted file mode 100644
index a4fc1e70..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-13 :)
-(: Description: Evaluation of the preceding axis that is part of an "intersect" operation. Both operands are the same. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/overtime[1]/day[2]/preceding::day) intersect ($input-context1/works[1]/employee[12]/overtime[1]/day[2]/preceding::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-14.xq
deleted file mode 100644
index 40a250e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: preceding-14 :)
-(: Description: Evaluation of the preceding axis that is part of an "except" operation. Both operands are the same. :)
-(: Uses fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(($input-context1/works[1]/employee[12]/preceding::employee) except ($input-context1/works[1]/employee[12]/preceding::employee)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-15.xq
deleted file mode 100644
index c7507648..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-15 :)
-(: Description: Evaluation of the preceding axis that is part of an "except" operation. Both operands are different. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/overtime/day) except ($input-context1/works[1]/employee[12]/overtime/day[2]/preceding::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-16.xq
deleted file mode 100644
index 9c1e6bfd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-16 :)
-(: Description: Evaluation of the preceding axis that is part of a boolean expression ("and" and fn:true(). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/preceding::employee) and fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-17.xq
deleted file mode 100644
index 9d7d82f1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-17 :)
-(: Description: Evaluation of the preceding axis that is part of a boolean expression ("and" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/preceding::employee) and fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-18.xq
deleted file mode 100644
index d778aba0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-18 :)
-(: Description: Evaluation of the preceding axis that is part of a boolean expression ("or" and fn:true()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/preceding::employee) or fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-19.xq
deleted file mode 100644
index e55c4a56..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-19 :)
-(: Description: Evaluation of the preceding axis that is part of a boolean expression ("or" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[12]/preceding::employee) or fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-2.xq
deleted file mode 100644
index 56773f71..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: preceding-2 :)
-(: Description: Evaluation of the preceding axis for which the given node does not exists. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count($input-context1/works/employee[1]/preceding::noSuchNode) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-20.xq
deleted file mode 100644
index fdc3a7d6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-20 :)
-(: Description: Evaluation of the preceding axis that used as part of the deep-equal-function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:deep-equal($input-context1/works[1]/employee[12]/preceding::employee,$input-context1/works[1]/employee[12]/preceding::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-21.xq
deleted file mode 100644
index 64d45ef1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-21.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: preceding-21 :)
-(: Description: Evaluation of the preceding axis used together with a newly constructed element. :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <anElement>Some Content</anElement>
-return
- fn:count($var/preceding::*) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-3.xq
deleted file mode 100644
index 281b52fc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-3 :)
-(: Description: Evaluation of the preceding axis that is part of an "is" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works/employee[2]/preceding::employee) is ($input-context1/works/employee[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-4.xq
deleted file mode 100644
index f264769a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-4 :)
-(: Description: Evaluation of the preceding axis that is part of an "is" expression (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding::employee) is ($input-context1/works[1]/employee[2]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-5.xq
deleted file mode 100644
index 624511d0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-5 :)
-(: Description: Evaluation of the preceding axis that is part of an "node before" expression (return true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding::employee) << ($input-context1/works[1]/employee[2]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-6.xq
deleted file mode 100644
index 594a6e10..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-6 :)
-(: Description: Evaluation of the preceding axis that is part of an "node before" expression and both operands are the same (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding::employee) << ($input-context1/works[1]/employee[2]/preceding::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-7.xq
deleted file mode 100644
index 23b14051..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-7 :)
-(: Description: Evaluation of the preceding axis that is part of an "node before" expression both operands are differents (return false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding::employee) << ($input-context1/works[1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-8.xq
deleted file mode 100644
index 46bb8ab3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-8 :)
-(: Description: Evaluation of the preceding axis that is part of a "node after" expression (returns true). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[13]) >> ($input-context1/works[1]/employee[12]/overtime[1]/day[2]/preceding::day) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-9.xq
deleted file mode 100644
index b74ef9db..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/FullAxis/precedingAxis/preceding-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: preceding-9 :)
-(: Description: Evaluation of the preceding axis that is part of an "node after" expression with both operands the same (returns false). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-($input-context1/works[1]/employee[2]/preceding::employee) >> ($input-context1/works[1]/employee[2]/preceding::employee) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-1.xq
deleted file mode 100644
index 0d8a8fc4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-1.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(: Name: fn-base-uri-1 :)
-(: Description: Evaluation of base-uri function with no arguments and no context item :)
-
-declare namespace eg = "http://example.org";
-declare function eg:noContextFunction()
- {
- fn:base-uri()
-};
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-eg:noContextFunction() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-10.xq
deleted file mode 100644
index 80958c0e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-10.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-10 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed Element node with base-xml argument (no escaping). :)
-(: Use fn:string :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:base-uri(<anElement xml:base="http://www.example.com">Element content</anElement>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-11.xq
deleted file mode 100644
index 535d5c8e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-11 :)
-(: Description: Evaluation of base-uri function with argument set to a computed constructed Document node with no base-xml argument. :)
-(: Use fn:count :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(document {<aDocument>some content</aDocument>})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-12.xq
deleted file mode 100644
index 9a0aaea2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-12.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-base-uri-12 :)
-(: Description: Evaluation of base-uri function with argument set to a computed constructed Document node argument. Uses declared base uri property:)
-(: Use fn:string :)
-
-declare base-uri "http://example.org";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:base-uri(document {<aDocument>some content</aDocument>})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-13.xq
deleted file mode 100644
index 35b71cc8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-13.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-base-uri-13 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed element node argument. Should not declared base uri property:)
-(: Use fn:string :)
-
-declare base-uri "http://example.org";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:base-uri(<anElement>some content</anElement>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-14.xq
deleted file mode 100644
index b777deea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-14 :)
-(: Description: Evaluation of base-uri function with argument set to a computed constructed attribute node argument. :)
-(: Use fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(attribute anAttribute{"attribute value"}))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-15.xq
deleted file mode 100644
index 4117ebf1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-15.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-15 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed PI node argument. :)
-(: Use fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(<?format role="output" ?>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-16.xq
deleted file mode 100644
index 9bca7722..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-16.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-16 :)
-(: Description: Evaluation of base-uri function with argument set to a computed constructed PI node argument. :)
-(: Use fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(processing-instruction {"PItarget"} {"PIcontent"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-17.xq
deleted file mode 100644
index 550ef1cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-17.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-base-uri-17 :)
-(: Description: Evaluation of base-uri function with argument set to a computed constructed PI node argument. :)
-(: Use fn:count to avoid empty file. Should not use the declare base-uri :)
-
-declare base-uri "http://example.org";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(processing-instruction {"PItarget"} {"PIcontent"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-18.xq
deleted file mode 100644
index e41a48dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-18.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(: Name: fn-base-uri-18 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed element node (via FLOWR expr). :)
-(: Use the declare base-uri :)
-
-declare base-uri "http://example.org";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <anElement>With some contexnt</anElement>
-return
- fn:string(fn:base-uri($var)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-19.xq
deleted file mode 100644
index f17a8544..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-19.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-base-uri-19 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed element node (via FLOWR expr). :)
-(: Use the xml-base attribute :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <anElement xml:base="http://www.examples.com">With some content</anElement>
-return
- fn:string(fn:base-uri($var)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-2.xq
deleted file mode 100644
index 37a7ed69..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-base-uri-2 :)
-(: Description: Evaluation of base-uri function with context item not a node :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(1 to 100)[fn:base-uri()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-20.xq
deleted file mode 100644
index 068f7946..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-20.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(: Name: fn-base-uri-20 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed element node (via FLOWR expr). :)
-(: Use the xml-base attribute and should ignore declared base uri property. :)
-
-declare base-uri "http://example.org";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <anElement xml:base="http://www.examples.com">With some content</anElement>
-return
- fn:string(fn:base-uri($var)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-21.xq
deleted file mode 100644
index 65814e51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-21.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(: Name: fn-base-uri-21 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed comment node (via FLOWR expr). :)
-(: Should ignore declared base uri property. :)
-
-declare base-uri "http://example.org";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-let $var := <!-- A Comment -->
-return
- fn:count(fn:base-uri($var)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-22.xq
deleted file mode 100644
index ca888e0e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-22.xq
+++ /dev/null
@@ -1,15 +0,0 @@
-(: Name: fn-base-uri-22 :)
-(: Description: Evaluation of base-uri function using the "." and no context item. :)
-
-declare namespace eg = "http://example.org";
-
-declare function eg:noContextFunction()
- {
- fn:base-uri(.)
-};
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-eg:noContextFunction() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-23.xq
deleted file mode 100644
index 4645f46d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-23.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-23 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed Element node with base-xml :)
-(: argument that needs escaping. Uses fn:string. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:base-uri(<anElement xml:base="http:\\example.com\\examples">Element content</anElement>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-3.xq
deleted file mode 100644
index d07977ce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-3.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-3 :)
-(: Description: Evaluation of base-uri function with argument set to empty sequence :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-4.xq
deleted file mode 100644
index 91073ffb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-4.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-4 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed comment :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(<!-- A comment -->)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-5.xq
deleted file mode 100644
index 3581015d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-5.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-5 :)
-(: Description: Evaluation of base-uri function with argument set to a computed constructed comment :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(comment {"A Comment Node "})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-6.xq
deleted file mode 100644
index 1b5e0227..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-6.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-6 :)
-(: Description: Evaluation of base-uri function with argument set to a computed constructed Text node. :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(text {"A Text Node"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-7.xq
deleted file mode 100644
index 6abab97a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-7.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-7 :)
-(: Description: Evaluation of base-uri function with argument set to a computed constructed Element node with not base-xml argument. :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:base-uri(element anElement {"An Element Node"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-8.xq
deleted file mode 100644
index f599b051..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-base-uri-8 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed Element node with not base-xml argument. :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-fn:count(fn:base-uri(<anElement>Element content</anElement>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-9.xq
deleted file mode 100644
index 35fd8b92..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/BaseURIFunc/fn-base-uri-9.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-base-uri-9 :)
-(: Description: Evaluation of base-uri function with argument set to a directly constructed Element node with base-xml argument. :)
-(: Use fn:string :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:base-uri(<anElement xml:base="http://example.com/examples">Element content</anElement>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-1.xq
deleted file mode 100644
index 6e21f43e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datadbl1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:double(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:double("-1.7976931348623157E308"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-2.xq
deleted file mode 100644
index f5f27be1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datadbl1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:double(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:double("0"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-3.xq
deleted file mode 100644
index 0c324956..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadbl1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datadbl1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:double(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:double("1.7976931348623157E308"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-1.xq
deleted file mode 100644
index ca2f8876..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datadec1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:decimal(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:decimal("-999999999999999999"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-2.xq
deleted file mode 100644
index 374a9330..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datadec1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:decimal(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:decimal("617375191608514839"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-3.xq
deleted file mode 100644
index 2cff0e16..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datadec1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datadec1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:decimal(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:decimal("999999999999999999"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-1.xq
deleted file mode 100644
index 603ba069..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataflt1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:float(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:float("-3.4028235E38"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-2.xq
deleted file mode 100644
index 2992192e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataflt1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:float(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:float("0"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-3.xq
deleted file mode 100644
index 436e4fd9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataflt1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataflt1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:float(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:float("3.4028235E38"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-1.xq
deleted file mode 100644
index f17e52eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataint1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:int(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:int("-2147483648"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-2.xq
deleted file mode 100644
index 7edfa828..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataint1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:int(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:int("-1873914410"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-3.xq
deleted file mode 100644
index 625b312f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataint1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataint1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:int(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:int("2147483647"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-1.xq
deleted file mode 100644
index 06261773..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataintg1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:integer(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:integer("-999999999999999999"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-2.xq
deleted file mode 100644
index 278fdcfb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataintg1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:integer(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:integer("830993497117024304"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-3.xq
deleted file mode 100644
index 63e13d56..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataintg1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataintg1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:integer(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:integer("999999999999999999"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-1.xq
deleted file mode 100644
index bdc0ead5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datalng1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:long(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:long("-92233720368547758"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-2.xq
deleted file mode 100644
index 73c850cf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datalng1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:long(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:long("-47175562203048468"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-3.xq
deleted file mode 100644
index 4f637b78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datalng1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datalng1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:long(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:long("92233720368547758"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-1.xq
deleted file mode 100644
index 94c7a431..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datanint1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:negativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:negativeInteger("-999999999999999999"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-2.xq
deleted file mode 100644
index 00a73c40..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datanint1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:negativeInteger(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:negativeInteger("-297014075999096793"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-3.xq
deleted file mode 100644
index 562a920d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanint1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datanint1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:negativeInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:negativeInteger("-1"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-1.xq
deleted file mode 100644
index e920a55b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datanni1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonNegativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:nonNegativeInteger("0"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-2.xq
deleted file mode 100644
index 8d23e927..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datanni1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonNegativeInteger(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:nonNegativeInteger("303884545991464527"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-3.xq
deleted file mode 100644
index 8ff402c2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanni1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datanni1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonNegativeInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:nonNegativeInteger("999999999999999999"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-1.xq
deleted file mode 100644
index 660795ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datanpi1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonPositiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:nonPositiveInteger("-999999999999999999"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-2.xq
deleted file mode 100644
index 1e679dfe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datanpi1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonPositiveInteger(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:nonPositiveInteger("-475688437271870490"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-3.xq
deleted file mode 100644
index ebb156f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datanpi1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datanpi1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonPositiveInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:nonPositiveInteger("0"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-1.xq
deleted file mode 100644
index 26c940f8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datapint1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:positiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:positiveInteger("1"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-2.xq
deleted file mode 100644
index 8801fe6a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datapint1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:positiveInteger(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:positiveInteger("52704602390610033"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-3.xq
deleted file mode 100644
index 6e6ba502..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datapint1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datapint1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:positiveInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:positiveInteger("999999999999999999"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-1.xq
deleted file mode 100644
index 9398e932..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datasht1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:short(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:short("-32768"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-2.xq
deleted file mode 100644
index 467337ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datasht1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:short(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:short("-5324"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-3.xq
deleted file mode 100644
index b100c465..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datasht1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datasht1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:short(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:short("32767"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-1.xq
deleted file mode 100644
index 83ebbdf9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataulng1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedLong(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:unsignedLong("0"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-2.xq
deleted file mode 100644
index fe9bd045..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataulng1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedLong(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:unsignedLong("130747108607674654"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-3.xq
deleted file mode 100644
index 4f60ee61..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-dataulng1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: dataulng1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedLong(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:unsignedLong("184467440737095516"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-1.xq
deleted file mode 100644
index 6a41f56d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datausht1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedShort(lower bound) :)
-(:*******************************************************:)
-
-fn:data((xs:unsignedShort("0"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-2.xq
deleted file mode 100644
index c6b9eff2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datausht1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedShort(mid range) :)
-(:*******************************************************:)
-
-fn:data((xs:unsignedShort("44633"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-3.xq
deleted file mode 100644
index 69ab0d41..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DataFunc/fn-datausht1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: datausht1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Thu Dec 16 10:48:18 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "data" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedShort(upper bound) :)
-(:*******************************************************:)
-
-fn:data((xs:unsignedShort("65535"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-1.xq
deleted file mode 100644
index d4cce43e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-document-uri-1 :)
-(: Description: Evaluation of fn:document-uri with incorrect arity. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:document-uri(<element1>contenty</element1>,"Argument 2") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-10.xq
deleted file mode 100644
index de063bdc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-10.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-10 :)
-(: Description: Evaluation of fn:document-uri with argument set to a directly constructed element node. :)
-(: Use the fn:count to avoid the empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(<anElement>element content</anElement>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-11.xq
deleted file mode 100644
index cc819290..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-11 :)
-(: Description: Evaluation of fn:document-uri with argument set to a directly constructed document node. :)
-(: Use the fn:count to avoid the empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(document {<anElement>element content</anElement>})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-12.xq
deleted file mode 100644
index ff149cdc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-document-uri-12 :)
-(: Description: Evaluation of fn:document-uri with argument set to document node from xml file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:contains(fn:document-uri(fn:doc($input-context1)),$input-context1) or (fn:document-uri(fn:doc($input-context1)) = "") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-13.xq
deleted file mode 100644
index c0f83442..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-13.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-13 :)
-(: Description: Evaluation of fn:document-uri with argument set to element node from xml file. :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri($input-context1/works[1]/employee[1])) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-14.xq
deleted file mode 100644
index f07d8010..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-14 :)
-(: Description: Evaluation of fn:document-uri with argument set to an attribute node from xml file. :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri($input-context1/works[1]/employee[1]/@name)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-15.xq
deleted file mode 100644
index 8a2d906c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-document-uri-15 :)
-(: Description: Evaluation of fn:document-uri used as argument to an fn:string-length function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-length(fn:string(fn:contains(fn:document-uri(fn:doc($input-context1)),$input-context1))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-16.xq
deleted file mode 100644
index 239e2ec4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-document-uri-16 :)
-(: Description: Evaluation of fn:document-uri used as argument to an fn:upper-case function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:upper-case(fn:string(fn:contains(fn:document-uri(fn:doc($input-context1)),$input-context1))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-17.xq
deleted file mode 100644
index 15462e8f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-document-uri-17 :)
-(: Description: Evaluation of fn:document-uri used as argument to an fn:lower-case function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:lower-case(fn:string(fn:contains(fn:document-uri(fn:doc($input-context1)),$input-context1))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-18.xq
deleted file mode 100644
index f3a2893b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-document-uri-18 :)
-(: Description: Evaluation of fn:document-uri used as argument to an fn:concat function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:concat(fn:string(fn:contains(fn:document-uri(fn:doc($input-context1)),$input-context1))," A String") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-19.xq
deleted file mode 100644
index afcca57f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-document-uri-19 :)
-(: Description: Evaluation of fn:document-uri used as argument to an fn:string-join function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-join((fn:string(fn:contains(fn:document-uri(fn:doc($input-context1)),$input-context1))," A String"),"") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-2.xq
deleted file mode 100644
index 202f83b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-document-uri-2 :)
-(: Description: Evaluation of fn:document-uri with argument set to empty sequence. :)
-(: Use the fn:count to avoid the empty file. :)
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-20.xq
deleted file mode 100644
index 05654922..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-document-uri-20 :)
-(: Description: Evaluation of fn:document-uri used as argument to an fn:substring-before function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:substring-before(fn:string(fn:contains(fn:document-uri($input-context1),"works-mod")),"e") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-21.xq
deleted file mode 100644
index 33594bc1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-21.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-21 :)
-(: Description: Evaluation of fn:document-uri used as argument to an fn:substring-after function. :)
-(: Use string. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:substring-after(fn:string(fn:contains(fn:document-uri($input-context1),"works-mod")),"t") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-3.xq
deleted file mode 100644
index c0ccd651..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-3.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-3 :)
-(: Description: Evaluation of fn:document-uri with argument set to a computed element node. :)
-(: Use the fn:count to avoid the empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(element anElement {"some content"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-4.xq
deleted file mode 100644
index 2a697b76..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-4.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-4 :)
-(: Description: Evaluation of fn:document-uri with argument set to a computed comment node. :)
-(: Use the fn:count to avoid the empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(comment {"a comment node"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-5.xq
deleted file mode 100644
index 8bf0ca64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-5.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-5 :)
-(: Description: Evaluation of fn:document-uri with argument set to a computed text node. :)
-(: Use the fn:count to avoid the empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(text {"a text node"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-6.xq
deleted file mode 100644
index e5ea7064..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-6.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-6 :)
-(: Description: Evaluation of fn:document-uri with argument set to a computed attribute node. :)
-(: Use the fn:count to avoid the empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(attribute anAttribute {"an attribute node"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-7.xq
deleted file mode 100644
index 1246481c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-7.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-7 :)
-(: Description: Evaluation of fn:document-uri with argument set to a computed PI node. :)
-(: Use the fn:count to avoid the empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(processing-instruction {"PITarget"} {"PIContent"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-8.xq
deleted file mode 100644
index c5cd7f5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-8.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-8 :)
-(: Description: Evaluation of fn:document-uri with argument set to a directly constructed PI node. :)
-(: Use the fn:count to avoid the empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(<?audio-output beep?>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-9.xq
deleted file mode 100644
index 81ce6c07..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/DocumentURIFunc/fn-document-uri-9.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-document-uri-9 :)
-(: Description: Evaluation of fn:document-uri with argument set to a directly constructed comment node. :)
-(: Use the fn:count to avoid the empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:document-uri(<!-- A comment node -->)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-1.xq
deleted file mode 100644
index 4a93d09f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-1.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-nilled-1 :)
-(: Description: Evaluation of nilled function with argument set to empty sequence.. :)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:nilled(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-10.xq
deleted file mode 100644
index 91365c5f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-10 :)
-(: Description: Evaluation of nilled function as argument to fn:not function. returns true. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:not(fn:nilled(<shoe xsi:nil="{fn:false()}"/>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-11.xq
deleted file mode 100644
index adec421f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-11 :)
-(: Description: Evaluation of nilled function as argument to fn:not function. returns false. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:not(fn:nilled(<shoe xsi:nil="{fn:true()}"/>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-12.xq
deleted file mode 100644
index 17b68f7f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-12 :)
-(: Description: Evaluation of nilled function used a part of boolean expression ("and" operator and fn:true() :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe xsi:nil="{fn:true()}"/>) and fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-13.xq
deleted file mode 100644
index 8e675c63..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-13 :)
-(: Description: Evaluation of nilled function used a part of boolean expression ("and" operator and fn:false() :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe xsi:nil="{fn:true()}"/>) and fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-14.xq
deleted file mode 100644
index 9c35d74f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-14.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-14 :)
-(: Description: Evaluation of nilled function used a part of boolean expression ("or" operator and fn:true() :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe xsi:nil="{fn:true()}"/>) or fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-15.xq
deleted file mode 100644
index 1bc8b452..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-15 :)
-(: Description: Evaluation of nilled function used a part of boolean expression ("or" operator and fn:false() :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe xsi:nil="{fn:true()}"/>) or fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-16.xq
deleted file mode 100644
index 16e6a8f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-16 :)
-(: Description: Evaluation of nilled function used as argument to fn:string function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:nilled(<shoe xsi:nil="{fn:true()}"/>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-17.xq
deleted file mode 100644
index bde5fb78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-17 :)
-(: Description: Evaluation of nilled function used as argument to xs:boolean function. Returns true :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-xs:boolean(fn:nilled(<shoe xsi:nil="{fn:true()}"/>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-18.xq
deleted file mode 100644
index 01ec246c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-18 :)
-(: Description: Evaluation of nilled function used as argument to xs:boolean function. Returns false :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-xs:boolean(fn:nilled(<shoe xsi:nil="{fn:false()}"/>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-19.xq
deleted file mode 100644
index d9844185..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-19.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-nilled-19 :)
-(: Description: Evaluation of nilled function with argument set to a document node :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:nilled(document {<aList><anElement>data</anElement></aList>})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-2.xq
deleted file mode 100644
index 14d48148..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-nilled-2 :)
-(: Description: Evaluation of nilled function with argument set to comment node. :)
-(: Use fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:nilled($input-context1/works/employee[2]/child::text()[position()=last()])) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-20.xq
deleted file mode 100644
index e88fc8cc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-20.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-nilled-20 :)
-(: Description: Evaluation of nilled function with argument set to an attribute node :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:nilled(attribute size {1})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-21.xq
deleted file mode 100644
index cdb76b67..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-21.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-nilled-21 :)
-(: Description: Evaluation of nilled function with argument set to a comment node :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:nilled(<!-- This is a comment node -->)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-22.xq
deleted file mode 100644
index 2eb64940..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-22.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-nilled-22 :)
-(: Description: Evaluation of nilled function with argument set to a processing instruction node :)
-(: Uses fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:nilled(<?format role="output" ?>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-3.xq
deleted file mode 100644
index 5fa722fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-3 :)
-(: Description: Evaluation of nilled function with argument set to an element node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled($input-context1/works/employee[2]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-4.xq
deleted file mode 100644
index dade85a3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-4 :)
-(: Description: Evaluation of nilled function with argument set to an element node. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe size = "5"/>) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-5.xq
deleted file mode 100644
index 5725cdc0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-5 :)
-(: Description: Evaluation of nilled function with argument set to an element node with xsi:nill = true. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe xsi:nil="true"/>) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-6.xq
deleted file mode 100644
index bad2579c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-6 :)
-(: Description: Evaluation of nilled function with argument set to an element node with xsi:nill = false. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe xsi:nil="false"/>) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-7.xq
deleted file mode 100644
index 0c6bb901..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-7 :)
-(: Description: Evaluation of nilled function with argument set to an element node with xsi:nill = fn:true(). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe xsi:nil="{fn:true()}"/>) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-8.xq
deleted file mode 100644
index ae268acc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-8 :)
-(: Description: Evaluation of nilled function with argument set to an element node with xsi:nill = fn:false(). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe xsi:nil="{fn:false()}"/>) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-9.xq
deleted file mode 100644
index 3753980b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NilledFunc/fn-nilled-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-nilled-9 :)
-(: Description: Evaluation of nilled function with more than one argument. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:nilled(<shoe xsi:nil="{fn:true()}"/>,"A Second Argument") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-1.xq
deleted file mode 100644
index c6621a99..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-1.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-2 :)
-(: Description: Evaluation of node function with argument set empty sequence. :)
-(: Use fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:node-name(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-10.xq
deleted file mode 100644
index 1b192943..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-10.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-10 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed element node with no namespace declaration and one child.:)
-(: Use fn:local-name-from-qName to retrieve local part.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:local-name-from-QName(fn:node-name(element elementName { element achild {"some text"}})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-11.xq
deleted file mode 100644
index cd8c02a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-11 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed attribute node with value set to empty string.:)
-(: Use fn:local-name-from-qName to retrieve local name. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:local-name-from-QName(fn:node-name(attribute attributeName {""})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-12.xq
deleted file mode 100644
index c7257bb3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-12 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed attribute node with value set to a non empty value.:)
-(: Use fn:local-name-from-qName to retrieve local name. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:local-name-from-QName(fn:node-name(attribute attributeName {"an attribute value"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-13.xq
deleted file mode 100644
index 7beeab6c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-13.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-13 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed attribute node with value set to a non empty value.:)
-(: Use fn:namespace-uri-from-qName to retrieve local name and fn:count. to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:namespace-uri-from-QName(fn:node-name(attribute attributeName {"an attribute value"}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-14.xq
deleted file mode 100644
index 7ed60d70..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-14 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed document node with value set to the empty string.:)
-(: Use fn:local-name-from-qName to retrieve local name and fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:local-name-from-QName(fn:node-name(document {""}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-15.xq
deleted file mode 100644
index 840e8201..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-15.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-15 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed document node with value set to the empty string.:)
-(: Use fn:namspace-uri-from-qName to retrieve local name and fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:namespace-uri-from-QName(fn:node-name(document {""}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-16.xq
deleted file mode 100644
index 7c83ce7d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-16.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-16 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed document node with value set to the a non empty value.:)
-(: Use fn:local-name-from-qName to retrieve local name and fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:local-name-from-QName(fn:node-name(document {"<element1> text </element1>"}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-17.xq
deleted file mode 100644
index 05dff1f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-17.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-17 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed document node with value set to the a non empty value.:)
-(: Use fn:namespace-uri-from-qName to retrieve local name and fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:namespace-uri-from-QName(fn:node-name(document {"<element1> text </element1>"}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-18.xq
deleted file mode 100644
index 1a533dcd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-18.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-18 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed text node with value set to the the empty string.:)
-(: Use fn:local-name-from-qName to retrieve local name and fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:local-name-from-QName(fn:node-name(text {""}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-19.xq
deleted file mode 100644
index 3987d842..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-19.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-19 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed text node with value set to the the empty string.:)
-(: Use fn:namespace-uri-from-qName to retrieve namespace and fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:namespace-uri-from-QName(fn:node-name(text {""}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-2.xq
deleted file mode 100644
index b464cfbe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-2 :)
-(: Description: Evaluation of node-name function with argument set to comment node. :)
-(: Use fn:count to avoid empty file :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:node-name($input-context1/works[1]/employee[2]/child::text()[position()=last()])) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-20.xq
deleted file mode 100644
index bbfe4032..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-20.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-20 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed text node with value set to a non empty value.:)
-(: Use fn:local-name-from-QName to retrieve local name and fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:local-name-from-QName(fn:node-name(text {"a text value"}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-21.xq
deleted file mode 100644
index 54aced4c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-21.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-21 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed text node with value set to a non empty value.:)
-(: Use fn:namespace-uri-from-QName to retrieve namespace and fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:namespace-uri-from-QName(fn:node-name(text {"a text value"}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-22.xq
deleted file mode 100644
index 663605ad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-22.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-22 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed processing instruction node.:)
-(: Use fn:fn-local-name-from-QName to retrieve local name. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:local-name-from-QName(fn:node-name(processing-instruction piName {"Processing Instruction content"})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-23.xq
deleted file mode 100644
index 154b2864..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-23.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-23 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed processing instruction node.:)
-(: Use fn:fn-namespace-uri-from-QName to retrieve namespace and fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:namespace-uri-from-QName(fn:node-name(processing-instruction piName {"Processing Instruction content"}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-24.xq
deleted file mode 100644
index 8179df8d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-24.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-node-name-24 :)
-(: Description: Evaluation of node-name function with wrong number of arguments.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:node-name(processing-instruction piName {"Processing Instruction content"},"A Second Argument") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-3.xq
deleted file mode 100644
index 48e4f150..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-node-name-3 :)
-(: Description: Evaluation of node-name function with argument set to an element node. :)
-(: Uses local-name-from-QName to get local part :)
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:local-name-from-QName(fn:node-name($input-context1/works[1]/employee[2])) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-4.xq
deleted file mode 100644
index a4fd5c3b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-4.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-4 :)
-(: Description: Evaluation of node-name function with argument set to an element node. :)
-(: use local-name-from-QName to get the local part. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:local-name-from-QName(fn:node-name(<shoe size = "5"/>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-5.xq
deleted file mode 100644
index 7a0760e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-5.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-5 :)
-(: Description: Evaluation of node-name function with argument set to comment node. :)
-(: Use of fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:node-name(<!-- This a comment node -->)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-6.xq
deleted file mode 100644
index e313a024..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-6.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-6 :)
-(: Description: Evaluation of node-name function with argument set to a Processing Instruction node. :)
-(: Use local-name-from-QName to get local part :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:local-name-from-QName(fn:node-name(<?format role="output" ?>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-7.xq
deleted file mode 100644
index 9ac00f6d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-node-name-7 :)
-(: Description: Evaluation of node-name function with argument set to a directly constructed element node with namespace declaration.:)
-(: Use namespace-uri-from-qName to retrive values from QName. :)
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:namespace-uri-from-QName(fn:node-name(<anelement xmlns = "http://example.com/examples"></anelement>)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-8.xq
deleted file mode 100644
index 311962ef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-8.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-node-name-8 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed element node with no namespace declaration and no children.:)
-(: Use local-name-from-qName to retrieve local part. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:local-name-from-QName(fn:node-name(element elementName {})) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-9.xq
deleted file mode 100644
index 730dd6e0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/NodeNameFunc/fn-node-name-9.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: fn-node-name-9 :)
-(: Description: Evaluation of node-name function with argument set to a computed constructed element node with no namespace declaration and no children.:)
-(: Use fn:namespace-uri-from-qName to retrieve namespace. Should return empty string. :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:namespace-uri-from-QName(fn:node-name(element elementName {}))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-1.xq
deleted file mode 100644
index 3e890e86..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-static-base-uri-1 :)
-(: Description: Evaluation of fn;static-base-uri function with incorrect arity. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:static-base-uri("A argument") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-10.xq
deleted file mode 100644
index 474d6565..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-10.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-10 :)
-(: Description: Evaluation of fn:static-base-uri function using Used as argument to fn:concat function. :)
-(: Uses fn:string .:)
-
-declare base-uri "http://www.example.com";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:concat(fn:string(fn:static-base-uri()),"another string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-11.xq
deleted file mode 100644
index b35b4891..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-11.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-11 :)
-(: Description: Evaluation of fn:static-base-uri function using Used as argument to fn:string-join function. :)
-(: Uses fn:string .:)
-
-declare base-uri "http://www.example.com";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-join((fn:string(fn:static-base-uri()),"another string"),"") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-12.xq
deleted file mode 100644
index 654d83a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-12.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-12 :)
-(: Description: Evaluation of fn:static-base-uri function using Used as argument to fn:string-length function. :)
-(: Uses fn:string .:)
-
-declare base-uri "http://www.example.com";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-length(fn:string(fn:static-base-uri())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-13.xq
deleted file mode 100644
index b9c5c002..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-13.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-13 :)
-(: Description: Evaluation of fn:static-base-uri function using Used as argument to fn:substring-before function. :)
-(: Uses fn:string .:)
-
-declare base-uri "http://www.example.com";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:substring-before(fn:string(fn:static-base-uri()),":") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-14.xq
deleted file mode 100644
index db77ddb4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-14.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-14 :)
-(: Description: Evaluation of fn:static-base-uri function using Used as argument to fn:substring-after function. :)
-(: Uses fn:string .:)
-
-declare base-uri "http://www.example.com";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:substring-after(fn:string(fn:static-base-uri()),":") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-2.xq
deleted file mode 100644
index 73ac10aa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-2 :)
-(: Description: Evaluation of fn:static-base-uri function using "ftp". :)
-(: Uses fn:string .:)
-
-declare base-uri "ftp://ftp.is.co.za/rfc/somefile.txt";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:static-base-uri()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-3.xq
deleted file mode 100644
index ffa2a31e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-3 :)
-(: Description: Evaluation of fn:static-base-uri function using "mailto". :)
-(: Uses fn:string .:)
-
-declare base-uri "mailto:John.Doe@example.com";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:static-base-uri()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-4.xq
deleted file mode 100644
index a6d2d390..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-4 :)
-(: Description: Evaluation of fn:static-base-uri function using "news". :)
-(: Uses fn:string .:)
-
-declare base-uri "news:comp.infosystems.www.servers.unix";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:static-base-uri()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-5.xq
deleted file mode 100644
index 322f80a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-5 :)
-(: Description: Evaluation of fn:static-base-uri function using "telnet". :)
-(: Uses fn:string .:)
-
-declare base-uri "telnet://192.0.2.16:80/";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:static-base-uri()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-6.xq
deleted file mode 100644
index c6a5e071..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-6.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-6 :)
-(: Description: Evaluation of fn:static-base-uri function using "tel". :)
-(: Uses fn:string .:)
-
-declare base-uri "tel:+1-816-555-1212";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:static-base-uri()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-7.xq
deleted file mode 100644
index 7f5b0dbd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-7.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-7 :)
-(: Description: Evaluation of fn:static-base-uri function using "ldap" scheme. :)
-(: Uses fn:string .:)
-
-declare base-uri "urn:oasis:names:specification:docbook:dtd:xml:4.1.2";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:static-base-uri()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-8.xq
deleted file mode 100644
index 7ff7d6fe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-8.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-8 :)
-(: Description: Evaluation of fn:static-base-uri function using Used as argument to upper-case function. :)
-(: Uses fn:string .:)
-
-declare base-uri "http://www.example.com";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:upper-case(fn:string(fn:static-base-uri())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-9.xq
deleted file mode 100644
index 4572c050..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StaticBaseURIFunc/fn-static-base-uri-9.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-static-base-uri-9 :)
-(: Description: Evaluation of fn:static-base-uri function using Used as argument to lower-case function. :)
-(: Uses fn:string .:)
-
-declare base-uri "http://www.example.com";
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:lower-case(fn:string(fn:static-base-uri())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-1.xq
deleted file mode 100644
index 48b597e2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-1.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(: Name: fn-string-1:)
-(: Description: Evaluation of the fn:string function with no argument and no context item defined.:)
-
-declare namespace eg = "http://example.org";
-declare function eg:noContextFunction()
- {
- fn:string()
-};
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-eg:noContextFunction() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-2.xq
deleted file mode 100644
index 4150c7e1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-string-2:)
-(: Description: Evaluation of the fn:string function with argument set to the empty sequence.:)
-(: Use fn:count to avoid empty file. :)
-(: insert-start :)
-
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:string(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-3.xq
deleted file mode 100644
index eca3be7a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-string-3.xq
+++ /dev/null
@@ -1,14 +0,0 @@
-(: Name: fn-string-3:)
-(: Description: Evaluation of the fn:string function with argument set to "." and no context node set.:)
-
-declare namespace eg = "http://example.org";
-declare function eg:noContextFunction()
- {
- fn:string(.)
-};
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-eg:noContextFunction() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-1.xq
deleted file mode 100644
index 2cb5f685..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringdbl1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:double(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:double("-1.7976931348623157E308")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-2.xq
deleted file mode 100644
index 66c9d981..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringdbl1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:double(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:double("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-3.xq
deleted file mode 100644
index dd149848..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdbl1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringdbl1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:double(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:double("1.7976931348623157E308")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-1.xq
deleted file mode 100644
index 64970f05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringdec1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:decimal(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:decimal("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-2.xq
deleted file mode 100644
index b1718c43..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringdec1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:decimal(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:decimal("617375191608514839")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-3.xq
deleted file mode 100644
index 0e81485a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringdec1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringdec1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:decimal(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:decimal("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-1.xq
deleted file mode 100644
index b3f12a9b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringflt1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:float(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:float("-3.4028235E38")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-2.xq
deleted file mode 100644
index 707b19ec..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringflt1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:float(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:float("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-3.xq
deleted file mode 100644
index c0be25fa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringflt1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringflt1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:float(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:float("3.4028235E38")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-1.xq
deleted file mode 100644
index 982e11e2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringint1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:int(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:int("-2147483648")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-2.xq
deleted file mode 100644
index fcd7ff9b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringint1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:int(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:int("-1873914410")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-3.xq
deleted file mode 100644
index ddd0af5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringint1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringint1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:int(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:int("2147483647")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-1.xq
deleted file mode 100644
index d4f438a5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringintg1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:integer(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:integer("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-2.xq
deleted file mode 100644
index afd01c4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringintg1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:integer(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:integer("830993497117024304")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-3.xq
deleted file mode 100644
index dd53837f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringintg1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringintg1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:integer(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:integer("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-1.xq
deleted file mode 100644
index ef082547..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringlng1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:long(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:long("-92233720368547758")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-2.xq
deleted file mode 100644
index f4231c93..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringlng1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:long(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:long("-47175562203048468")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-3.xq
deleted file mode 100644
index 1c51a6ce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringlng1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringlng1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:long(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:long("92233720368547758")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-1.xq
deleted file mode 100644
index 2ac0ae2a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringnint1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:negativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:negativeInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-2.xq
deleted file mode 100644
index 72d15a1d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringnint1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:negativeInteger(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:negativeInteger("-297014075999096793")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-3.xq
deleted file mode 100644
index c251162f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnint1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringnint1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:negativeInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:negativeInteger("-1")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-1.xq
deleted file mode 100644
index 250c0574..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringnni1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonNegativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:nonNegativeInteger("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-2.xq
deleted file mode 100644
index e17755c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringnni1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonNegativeInteger(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:nonNegativeInteger("303884545991464527")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-3.xq
deleted file mode 100644
index ad2eeef6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnni1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringnni1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonNegativeInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:nonNegativeInteger("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-1.xq
deleted file mode 100644
index 7c18d552..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringnpi1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonPositiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:nonPositiveInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-2.xq
deleted file mode 100644
index cd8b303f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringnpi1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonPositiveInteger(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:nonPositiveInteger("-475688437271870490")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-3.xq
deleted file mode 100644
index d5b364f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringnpi1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringnpi1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonPositiveInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:nonPositiveInteger("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-1.xq
deleted file mode 100644
index 39e091c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringpint1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:positiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:positiveInteger("1")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-2.xq
deleted file mode 100644
index cbcb20c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringpint1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:positiveInteger(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:positiveInteger("52704602390610033")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-3.xq
deleted file mode 100644
index 60d1e451..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringpint1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringpint1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:positiveInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:positiveInteger("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-1.xq
deleted file mode 100644
index 69aceb64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringsht1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:short(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:short("-32768")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-2.xq
deleted file mode 100644
index ec856114..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringsht1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:short(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:short("-5324")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-3.xq
deleted file mode 100644
index dbd01c5e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringsht1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringsht1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:short(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:short("32767")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-1.xq
deleted file mode 100644
index 5e8287ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringulng1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedLong(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:unsignedLong("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-2.xq
deleted file mode 100644
index b89a7cf9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringulng1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedLong(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:unsignedLong("130747108607674654")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-3.xq
deleted file mode 100644
index cddc6134..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringulng1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringulng1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedLong(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:unsignedLong("184467440737095516")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-1.xq
deleted file mode 100644
index 4ab386d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringusht1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedShort(lower bound) :)
-(:*******************************************************:)
-
-fn:string(xs:unsignedShort("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-2.xq
deleted file mode 100644
index acaa28cc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringusht1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedShort(mid range) :)
-(:*******************************************************:)
-
-fn:string(xs:unsignedShort("44633")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-3.xq
deleted file mode 100644
index 4af22d13..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AccessorFunc/StringFunc/fn-stringusht1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: stringusht1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedShort(upper bound) :)
-(:*******************************************************:)
-
-fn:string(xs:unsignedShort("65535")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-string-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-string-10.xq
deleted file mode 100644
index f314372c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-string-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-10 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" used as argument to the "fn:lower-case" function and use codepoints 97,32,115,116,114,105,110,103 (String "a string"). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:lower-case(fn:codepoints-to-string((97,32,115,116,114,105,110,103))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-string-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-string-9.xq
deleted file mode 100644
index da97c69f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-string-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-9 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" used as argument to the "fn:upper-case" function and use codepoints 65,32,83,84,82,73,78,71 (string "A STRING"). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:upper-case(fn:codepoints-to-string((65,32,83,84,82,73,78,71))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-1.xq
deleted file mode 100644
index a13e6f65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-1:)
-(: Description: Invalid XML character codepoint as part of "code-points-to-string" function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoints-to-string(0) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-10.xq
deleted file mode 100644
index f314372c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-10 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" used as argument to the "fn:lower-case" function and use codepoints 97,32,115,116,114,105,110,103 (String "a string"). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:lower-case(fn:codepoints-to-string((97,32,115,116,114,105,110,103))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-11.xq
deleted file mode 100644
index 7fe72dbb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-11 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" that uses xs:integer as argument and codepoints 97. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoints-to-string(xs:integer(97)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-12.xq
deleted file mode 100644
index 698da823..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-12 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" that uses fn:avg/xs:integer function and codepoints 65,32,83,116,114,105,110,103. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoints-to-string(xs:integer(fn:avg((65,32,83,116,114,105,110,103)))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-13.xq
deleted file mode 100644
index 9eaacb69..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-13 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" that is used as argument to fn:concat function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:concat(fn:codepoints-to-string((49,97)),"1a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-14.xq
deleted file mode 100644
index 5213a542..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-14.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-14 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" that is used as argument to fn:string-to-codepoints function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-to-codepoints(fn:codepoints-to-string((49,97))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-15.xq
deleted file mode 100644
index 43b814dc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-15 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" that is used as argument to fn:string-length function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-length(fn:codepoints-to-string((49,97))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-16.xq
deleted file mode 100644
index 630a3a9a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-16 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" that is used as argument to fn:string-join function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-join((fn:codepoints-to-string((49,97)),'ab'),'') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-2.xq
deleted file mode 100644
index 7ecf9fb1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-2:)
-(: Description: Invalid XML character codepoint as part of "code-points-to-string" function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoints-to-string(10000000) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-3.xq
deleted file mode 100644
index 936d5de9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-3 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" with argument set to codepoint 49 (single character ('1')). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoints-to-string(49) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-4.xq
deleted file mode 100644
index b72c33a1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-4 :)
-(: Description: Evaluation of an "fn-codepoints-to-string" with argument set to codepoint 97 (a single character 'a'). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoints-to-string(97) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-5.xq
deleted file mode 100644
index 6946715b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-5 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" with argument set to codepoints 49, 97 (combination of number/character '1a'). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoints-to-string((49,97)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-6.xq
deleted file mode 100644
index d3a33f06..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-6 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" with argument set to the codepoints 35, 42, 94 36 (characters "#*^$"). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoints-to-string((35, 42, 94, 36)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-7.xq
deleted file mode 100644
index 584e1917..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-7 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" with argument set to codepoints 99 111 100 101 112 111 105 110 116 115 45 116 111 45 115 116 114 105 110 103 (string "codepoints-to-string"). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoints-to-string((99,111,100,101,112,111,105,110,116,115,45,116,111,45,115,116,114,105,110,103)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-8.xq
deleted file mode 100644
index 7ba3558b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-8 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" used as argument to "xs:string()" function and uses codepoints 65, 32, 83 116, 114, 105, 110, 103 ("A String") . :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-xs:string(fn:codepoints-to-string((65,32,83,116,114,105,110,103))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-9.xq
deleted file mode 100644
index da97c69f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoints-to-string-9 :)
-(: Description: Evaluation of an "fn:codepoints-to-string" used as argument to the "fn:upper-case" function and use codepoints 65,32,83,84,82,73,78,71 (string "A STRING"). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:upper-case(fn:codepoints-to-string((65,32,83,84,82,73,78,71))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-1.xq
deleted file mode 100644
index a9331b17..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-codepoints-to-string1args-1:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T14:48:55-04:00:)
-(:Purpose:Test codepoints-to-string with variety of characters:)
-(:*******************************************************:)
-
-codepoints-to-string((98,223,1682,12365,63744)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-2.xq
deleted file mode 100644
index 2cc1cfbf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-codepoints-to-string1args-2:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T14:52:52-04:00:)
-(:Purpose:Test codepoints-to-string with an empty sequence argument:)
-(:*******************************************************:)
-
-codepoints-to-string(()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-3.xq
deleted file mode 100644
index 1131bd9b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-codepoints-to-string1args-3:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T15:16:54-04:00:)
-(:Purpose:Test invalid type in argument for codepoints-to-string:)
-(:*******************************************************:)
-
-codepoints-to-string('hello') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-4.xq
deleted file mode 100644
index 6437f180..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/CodepointToStringFunc/fn-codepoints-to-string1args-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-codepoints-to-string1args-4:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T15:21:38-04:00:)
-(:Purpose:Test incorrect arity for codepoints-to-string:)
-(:*******************************************************:)
-
-codepoints-to-string((),()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-1.xq
deleted file mode 100644
index 0d6606c3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-1 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" with argument set to a single character ('1'). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-to-codepoints('1') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-10.xq
deleted file mode 100644
index 16aa11ab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-10 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" that is used as argument to fn:avg function . :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:avg(fn:string-to-codepoints("A String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-11.xq
deleted file mode 100644
index 1c44d2ae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-string-to-codepoints-11 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" that is used as argument to fn:empty function . :)
-(: return false :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:empty(fn:string-to-codepoints("A String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-12.xq
deleted file mode 100644
index 70cca605..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-string-to-codepoints-12 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" that is used as argument to fn:empty function. :)
-(: return true :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:empty(fn:string-to-codepoints(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-13.xq
deleted file mode 100644
index 6ade02a8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-13.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-string-to-codepoints-13 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" that is used as argument to fn:exits function . :)
-(: return false :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:exists(fn:string-to-codepoints(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-14.xq
deleted file mode 100644
index f4d1ce2f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-string-to-codepoints-14 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" that is used as argument to fn:empty function. :)
-(: return true :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:exists(fn:string-to-codepoints("A String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-2.xq
deleted file mode 100644
index 593543e5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-2 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" with argument set to a single character ('a'). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-to-codepoints('a') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-3.xq
deleted file mode 100644
index 7754a590..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-3 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" with argument set to a combination of number/character ('1a'). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-to-codepoints('1a') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-4.xq
deleted file mode 100644
index 2bcf0094..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-4 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" with argument set to the characters "#*^$". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-to-codepoints('#*^$') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-5.xq
deleted file mode 100644
index 8275d23b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-5 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" with argument set to "string-to-codepoints". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-to-codepoints('string-to-codepoints') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-6.xq
deleted file mode 100644
index 0438e24b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-6 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" with argument that uses "xs:string()" function . :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-to-codepoints(xs:string("A String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-7.xq
deleted file mode 100644
index af1eb008..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-7 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" with argument that uses "fn:upper-case" function . :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-to-codepoints(fn:upper-case("A String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-8.xq
deleted file mode 100644
index 843b5ad5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-8 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" with argument that uses "fn:lower-case" function . :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-to-codepoints(fn:lower-case("A String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-9.xq
deleted file mode 100644
index 125286e2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-string-to-codepoints-9 :)
-(: Description: Evaluation of an "fn:string-to-codepoints" that is used as argument to fn:count function . :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:string-to-codepoints("A String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-1.xq
deleted file mode 100644
index 7e299b06..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: string-to-codepoints1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-to-codepoints" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:string-to-codepoints(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-2.xq
deleted file mode 100644
index 6dcc9269..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: string-to-codepoints1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-to-codepoints" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:string-to-codepoints(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-3.xq
deleted file mode 100644
index 814265db..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: string-to-codepoints1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-to-codepoints" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:string-to-codepoints(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-4.xq
deleted file mode 100644
index f060c102..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-string-to-codepoints1args-4:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T13:40:13-04:00:)
-(:Purpose:Test string-to-codepoints with variety of characters:)
-(:*******************************************************:)
-
-string-to-codepoints('bßڒã豈') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-5.xq
deleted file mode 100644
index 49f9ea0d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-string-to-codepoints1args-5:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T13:43:07-04:00:)
-(:Purpose:Test string-to-codepoints with an empty string argument:)
-(:*******************************************************:)
-
-fn:string-to-codepoints("") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-6.xq
deleted file mode 100644
index 2cc314ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-string-to-codepoints1args-6:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T15:31:49-04:00:)
-(:Purpose:Test string-to-codepoints with empty sequence argument:)
-(:*******************************************************:)
-
-string-to-codepoints(()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-7.xq
deleted file mode 100644
index 5d1521a4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-string-to-codepoints1args-7:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T15:31:09-04:00:)
-(:Purpose:Test string-to-codepoints with invalid type in argument:)
-(:*******************************************************:)
-
-string-to-codepoints(12) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-8.xq
deleted file mode 100644
index c54ffb70..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/AssDisassStringFunc/StringToCodepointFunc/fn-string-to-codepoints1args-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-string-to-codepoints1args-8:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T15:30:23-04:00:)
-(:Purpose:Test string-to-codepoints with incorrect function arity:)
-(:*******************************************************:)
-
-string-to-codepoints('abc','def') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-1.xq
deleted file mode 100644
index 2eaebdc8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-1 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with wrong arity. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-10.xq
deleted file mode 100644
index 3c1ad2f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-10 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with wrong argument type. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal(xs:integer(1),xs:integer(1)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-11.xq
deleted file mode 100644
index 9db29599..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-11 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with wrong argument type (only second argument). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa",xs:integer(1)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-12.xq
deleted file mode 100644
index 6bdb5f05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-12 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with arguments set to "aa" and "AA" respectively. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa","AA") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-13.xq
deleted file mode 100644
index c0720595..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-13 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with arguments set to "aa" and lower-case("AA") respectively. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa",fn:lower-case("AA")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-14.xq
deleted file mode 100644
index 3e2d5f33..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-14.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-14 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with arguments set to "aa" and upper-case("aa") respectively. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa",fn:upper-case("aa")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-15.xq
deleted file mode 100644
index 081ac8de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-15 :)
-(: Description: Evaluation of an "fn:codepoint-equal" as an argument to xs:boolean. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-xs:boolean(fn:codepoint-equal("aa","aa")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-16.xq
deleted file mode 100644
index 297bb75f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-16 :)
-(: Description: Evaluation of an "fn:codepoint-equal" as part of boolean expression ("and" and fn:true()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa","aa") and fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-17.xq
deleted file mode 100644
index 81910f31..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-17 :)
-(: Description: Evaluation of an "fn:codepoint-equal" as part of boolean expression ("and" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa","aa") and fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-18.xq
deleted file mode 100644
index c77f2b6c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-18 :)
-(: Description: Evaluation of an "fn:codepoint-equal" as part of boolean expression ("or" and fn:true()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa","aa") or fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-19.xq
deleted file mode 100644
index 76731f3d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-19 :)
-(: Description: Evaluation of an "fn:codepoint-equal" as part of boolean expression ("or" and fn:false()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa","aa") or fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-2.xq
deleted file mode 100644
index d3842a89..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-2.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-codepoint-equal-2 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with arguments set to empty sequence :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:codepoint-equal((),())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-20.xq
deleted file mode 100644
index b8387eb4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-20 :)
-(: Description: Evaluation of an "fn:codepoint-equal" as part of boolean expression involving two fn:codepoint-equal ("and" operator). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa","aa") and fn:codepoint-equal("aa","aa") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-21.xq
deleted file mode 100644
index 1f48fafc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-21.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-21 :)
-(: Description: Evaluation of an "fn:codepoint-equal" as part of boolean expression involving two fn:codepoint-equal ("or" operator). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("aa","aa") or fn:codepoint-equal("aa","aa") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-3.xq
deleted file mode 100644
index e7e0a852..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-3 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with arguments set to zero length string. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("","") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-4.xq
deleted file mode 100644
index 7ed75a7a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-4 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with arguments set to same value "a". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("a","a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-5.xq
deleted file mode 100644
index e3865771..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-5 :)
-(: Description: Evaluation of an "fn:codepoint-equal" with arguments set to different values "a", "b" respectively. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal("a","b") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-6.xq
deleted file mode 100644
index f01c8f5b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-6 :)
-(: Description: Evaluation of an "fn:codepoint-equal" as argument to fn:not. Returns true :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:not(fn:codepoint-equal("a","b")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-7.xq
deleted file mode 100644
index 500c2b15..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-7 :)
-(: Description: Evaluation of an "fn:codepoint-equal" as argument to fn:not. Returns false :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:not(fn:codepoint-equal("a","a")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-8.xq
deleted file mode 100644
index debf91af..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-8 :)
-(: Description: Evaluation of an "fn:codepoint-equal" whose arguments use fn:string() for a number :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal(fn:string(1),fn:string(1)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-9.xq
deleted file mode 100644
index 942780bc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CodepointEqualFunc/fn-codepoint-equal-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-codepoint-equal-9 :)
-(: Description: Evaluation of an "fn:codepoint-equal" whose arguments use fn:string() for a string. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:codepoint-equal(fn:string("aa"),fn:string("aa")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-1.xq
deleted file mode 100644
index 762d5a83..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:compare("","") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-10.xq
deleted file mode 100644
index 161642f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-10.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-10 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = " " :)
-(:$arg2 = " AAAAABBBBB" :)
-(:*******************************************************:)
-
-fn:compare(" ","AAAAABBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-11.xq
deleted file mode 100644
index 41daa4b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-11 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:compare("A","A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-12.xq
deleted file mode 100644
index 747400d1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-12 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(:using it as a argument of a fn:not - returns false :)
-(:*******************************************************:)
-
-fn:not(fn:compare("A","B")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-13.xq
deleted file mode 100644
index 58f20e4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-13.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-13 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string("A") :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:compare(xs:string("A"),"A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-14.xq
deleted file mode 100644
index 9b8544bf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-14.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-14 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = xs:string("A") :)
-(:*******************************************************:)
-
-fn:compare("A",xs:string("A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-15.xq
deleted file mode 100644
index a7c0732e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-15.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-15 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = "a" :)
-(:*******************************************************:)
-
-fn:compare("A","a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-16.xq
deleted file mode 100644
index 5428b895..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-16.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-16 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "a" :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:compare("a","A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-17.xq
deleted file mode 100644
index f74b68f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-17.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-17 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Jun 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "compare" :)
-(:$arg2 = "compare" :)
-(:*******************************************************:)
-
-fn:compare("compare","compare") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-18.xq
deleted file mode 100644
index 2f76410e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-18.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-18 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Jun 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "comparecompare" :)
-(:$arg2 = "compare" :)
-(:*******************************************************:)
-
-fn:compare("comparecompare","compare") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-19.xq
deleted file mode 100644
index aa1e9bae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-19.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-19 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "****" :)
-(:$arg2 = "***" :)
-(:*******************************************************:)
-
-fn:compare("****","***") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-2.xq
deleted file mode 100644
index e8e22570..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:compare("","A Character String") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-20.xq
deleted file mode 100644
index 334acbe0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-20.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-20 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Jun 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "12345" :)
-(:$arg2 = "1234" :)
-(:*******************************************************:)
-
-fn:compare("12345","1234") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-21.xq
deleted file mode 100644
index ca965953..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-21.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-21 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Jun 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "compare" :)
-(:$arg2 = "erapmoc" :)
-(:("compare" backwards) :)
-(:*******************************************************:)
-
-fn:compare("compare","erapmoc") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-22.xq
deleted file mode 100644
index 3494ba3e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-22.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:Test: fn-compare-22 :)
-(:Description Evaluates The "compare" function with a nonexistent collation. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:compare("a","a","CollationA") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-3.xq
deleted file mode 100644
index d2d35e5f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1 , 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A Character String" :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:compare("A Character String","") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-4.xq
deleted file mode 100644
index e502097a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:count(fn:compare((),"")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-5.xq
deleted file mode 100644
index 3a4d7065..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:count(fn:compare("",())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-6.xq
deleted file mode 100644
index bc451383..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-6.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A Character String" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:count(fn:compare("A Character String",())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-7.xq
deleted file mode 100644
index 946ebb33..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-7.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:count(fn:compare((),"A Character String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-8.xq
deleted file mode 100644
index c9cf381a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-8.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-8 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBBCCCCC" :)
-(:$arg2 = "BBBBB" :)
-(:*******************************************************:)
-
-fn:compare("AAAAABBBBBCCCCC","BBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-9.xq
deleted file mode 100644
index f8691b33..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare-9.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-compare-9 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 1, 2005 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBB" :)
-(:$arg2 = " " :)
-(:*******************************************************:)
-
-fn:compare("AAAAABBBBB"," ") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-1.xq
deleted file mode 100644
index 6482ad50..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: compare2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$comparand1 = xs:string(lower bound) :)
-(:$comparand2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:compare(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-2.xq
deleted file mode 100644
index e9076968..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: compare2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$comparand1 = xs:string(mid range) :)
-(:$comparand2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:compare(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-3.xq
deleted file mode 100644
index 2de72f5f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: compare2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$comparand1 = xs:string(upper bound) :)
-(:$comparand2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:compare(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-4.xq
deleted file mode 100644
index 8307910b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: compare2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$comparand1 = xs:string(lower bound) :)
-(:$comparand2 = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:compare(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-5.xq
deleted file mode 100644
index 4015d10c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/CompStringFunc/CompareFunc/fn-compare2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: compare2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "compare" function :)
-(: with the arguments set as follows: :)
-(:$comparand1 = xs:string(lower bound) :)
-(:$comparand2 = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:compare(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-1.xq
deleted file mode 100644
index fe4d9758..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-1 :)
-(: Description: Evaluation of fn-encode-for-uri function with argument thast ha nothing to encode. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-10.xq
deleted file mode 100644
index 427e7869..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-10 :)
-(: Description: Examines that fn-encode-for-uri function does escape the "(" symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples(example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-11.xq
deleted file mode 100644
index f76f4a8e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-11 :)
-(: Description: Examines that fn-encode-for-uri function does escape the ")" symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples)example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-12.xq
deleted file mode 100644
index 7be68e5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-12 :)
-(: Description: Examines that fn-encode-for-uri function does not escape numbers. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples0123456789example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-13.xq
deleted file mode 100644
index 5448257e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-13 :)
-(: Description: Examines that fn-encode-for-uri function escapes the space. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-14.xq
deleted file mode 100644
index 1ec1c66d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-14.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-14 :)
-(: Description: Examines that fn-encode-for-uri function escapes the "/" character. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples/example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-15.xq
deleted file mode 100644
index 3083821b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-15 :)
-(: Description: Examines that fn-encode-for-uri function escapes the ":" character. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("http:examples")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-16.xq
deleted file mode 100644
index a69ad955..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-16 :)
-(: Description: Examines that fn-encode-for-uri function escapes the "%" character. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("http%20examples")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-2.xq
deleted file mode 100644
index 74fd8c61..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-2 :)
-(: Description: Examines that fn-encode-for-uri function does escape the "#" symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples#example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-3.xq
deleted file mode 100644
index 7103fdc9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-3 :)
-(: Description: Examines that fn-encode-for-uri function does not escape the "-" symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples-example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-4.xq
deleted file mode 100644
index 635d2c78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-4 :)
-(: Description: Examines that fn-encode-for-uri function does not escape the "_" symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples_example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-5.xq
deleted file mode 100644
index f5202178..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-5 :)
-(: Description: Examines that fn-encode-for-uri function does not escape the "." symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples.example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-6.xq
deleted file mode 100644
index 90e30d3e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-6 :)
-(: Description: Examines that fn-encode-for-uri function does escapes the "!" symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples!example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-7.xq
deleted file mode 100644
index 06bee020..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-7 :)
-(: Description: Examines that fn-encode-for-uri function does not escape the "~" symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples~example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-8.xq
deleted file mode 100644
index d749ef38..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-8 :)
-(: Description: Examines that fn-encode-for-uri function does escape the "*" symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples*example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-9.xq
deleted file mode 100644
index d0a82890..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-encode-for-uri-9 :)
-(: Description: Examines that fn-encode-for-uri function does escape the "'" symbol. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(fn:encode-for-uri("examples'example")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-1.xq
deleted file mode 100644
index 803d6621..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-encode-for-uri1args-1:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:08:39+01:00:)
-(:Purpose:Test encode-for-uri from example defined in functions and operators specification:)
-(:*******************************************************:)
-
-fn:encode-for-uri ("http://www.example.com/00/Weather/CA/Los%20Angeles#ocean") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-2.xq
deleted file mode 100644
index d737a694..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-encode-for-uri1args-2:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:09:57+01:00:)
-(:Purpose:Test encode-for-uri from example defined in functions and operators specification:)
-(:*******************************************************:)
-
-encode-for-uri("~bébé") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-3.xq
deleted file mode 100644
index 768a9c32..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-encode-for-uri1args-3:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:11:17+01:00:)
-(:Purpose:Test encode-for-uri from example defined in functions and operators specification:)
-(:*******************************************************:)
-
-encode-for-uri("100% organic") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-4.xq
deleted file mode 100644
index 02e31bb2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-encode-for-uri1args-4:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:15:59+01:00:)
-(:Purpose:Test encode-for-uri with zero-length string argument:)
-(:*******************************************************:)
-
-encode-for-uri('') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-5.xq
deleted file mode 100644
index 04a3ce9d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-encode-for-uri1args-5:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:17:57+01:00:)
-(:Purpose:Test encode-for-uri with empty sequence argument:)
-(:*******************************************************:)
-
-encode-for-uri(()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-6.xq
deleted file mode 100644
index 56a5510c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-encode-for-uri1args-6:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:19:45+01:00:)
-(:Purpose:Test encode-for-uri with invalid argument type:)
-(:*******************************************************:)
-
-encode-for-uri(12) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-7.xq
deleted file mode 100644
index c57d3b3d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EncodeURIfunc/fn-encode-for-uri1args-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-encode-for-uri1args-7:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:21:33+01:00:)
-(:Purpose:Test encode-for-uri with incorrect arity:)
-(:*******************************************************:)
-
-encode-for-uri('',()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-1.xq
deleted file mode 100644
index 275e6ad8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-1:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the lower cases letters.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("abcdedfghijklmnopqrstuvwxyz") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-10.xq
deleted file mode 100644
index 6c75a689..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-10:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the ")" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example)example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-11.xq
deleted file mode 100644
index 21f63fa4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-11:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "*" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example*example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-12.xq
deleted file mode 100644
index ae2f14dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-12:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "+" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example+example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-13.xq
deleted file mode 100644
index d5e0451c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-13:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "," symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example,example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-14.xq
deleted file mode 100644
index b2ac3735..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-14.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-14:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "-" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example-example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-15.xq
deleted file mode 100644
index d497fd78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-15:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "." symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example.example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-16.xq
deleted file mode 100644
index 0a089483..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-16:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "/" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example/example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-17.xq
deleted file mode 100644
index 0133dd7d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-17:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the ";" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example;example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-18.xq
deleted file mode 100644
index 8f2d597f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-18:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the ":" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example:example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-19.xq
deleted file mode 100644
index 3d77522b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-19:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "@" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example@example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-2.xq
deleted file mode 100644
index e910ecfc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-2:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the upper cases letters.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("ABCDEFGHIJKLMNOPQRSTUVWXYZ") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-20.xq
deleted file mode 100644
index 2bc3d2d3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-20:)
-(: Description: Examines that the fn:escape-html-uri function does escape the euro symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example&#xe9;&#x20AC;example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-21.xq
deleted file mode 100644
index e1bd3fc6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-21.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-21:)
-(: Description: Examines that the fn:escape-html-uri function does escape the euro symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example&#x20AC;example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-3.xq
deleted file mode 100644
index 263a81b7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-3:)
-(: Description: Examines that the fn:escape-html-uri function does not escape digits.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("a0123456789") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-4.xq
deleted file mode 100644
index bf4f5037..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-4:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the space.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-5.xq
deleted file mode 100644
index 4d34dc51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-5:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "!" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example!example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-6.xq
deleted file mode 100644
index 050b2dd7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-6:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "#" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example#example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-7.xq
deleted file mode 100644
index 85dfd157..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-7:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "$" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example$example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-8.xq
deleted file mode 100644
index c205b6b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-8:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "'" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example'example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-9.xq
deleted file mode 100644
index f0065d88..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-escape-html-uri-9:)
-(: Description: Examines that the fn:escape-html-uri function does not escape the "(" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:escape-html-uri("example(example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-1.xq
deleted file mode 100644
index c4220350..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-escape-html-uri1args-1:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:36:54+01:00:)
-(:Purpose:Test escape-html-uri from example defined in functions and operators specification:)
-(:*******************************************************:)
-
-escape-html-uri("http://www.example.com/00/Weather/CA/Los Angeles#ocean") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-2.xq
deleted file mode 100644
index 6939cc38..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-escape-html-uri1args-2:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:38:20+01:00:)
-(:Purpose:Test escape-html-uri from example defined in functions and operators specification:)
-(:*******************************************************:)
-
-escape-html-uri("javascript:if (navigator.browserLanguage == 'fr') window.open('http://www.example.com/~bébé');") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-3.xq
deleted file mode 100644
index 08039d3d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-escape-html-uri1args-3:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:39:13+01:00:)
-(:Purpose:Test escape-html-uri with zero-length string argument:)
-(:*******************************************************:)
-
-escape-html-uri('') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-4.xq
deleted file mode 100644
index d5a0c4fc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-escape-html-uri1args-4:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:39:50+01:00:)
-(:Purpose:Test escape-html-uri with empty sequence argument:)
-(:*******************************************************:)
-
-escape-html-uri(()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-5.xq
deleted file mode 100644
index 75643cb7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-escape-html-uri1args-5:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:40:38+01:00:)
-(:Purpose:Test escape-html-uri with invalid argument types:)
-(:*******************************************************:)
-
-escape-html-uri(12) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-6.xq
deleted file mode 100644
index 471f0836..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/EscapeHTMLURIFunc/fn-escape-html-uri1args-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-escape-html-uri1args-6:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:41:21+01:00:)
-(:Purpose:Test escape-html-uri with incorrect arity:)
-(:*******************************************************:)
-
-escape-html-uri('',()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-1.xq
deleted file mode 100644
index 88077871..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-1 :)
-(: Description: Examines the fn:iri-to-uri function with nothing to escape.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-10.xq
deleted file mode 100644
index b91d14bf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-10 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "'" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example'example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-11.xq
deleted file mode 100644
index 0b26362e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-11 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "(" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example(example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-12.xq
deleted file mode 100644
index 59a349a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-12 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the ")" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example)example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-13.xq
deleted file mode 100644
index 06caefb5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-13 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the ";" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example;example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-14.xq
deleted file mode 100644
index 01d1d2b8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-14.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-14 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "/" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example/example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-15.xq
deleted file mode 100644
index 8d98f4b4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-15 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "?" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example?example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-16.xq
deleted file mode 100644
index 57fa8add..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-16 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the ":" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example:example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-17.xq
deleted file mode 100644
index be0ace44..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-17 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "@" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example@example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-18.xq
deleted file mode 100644
index be67639c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-18 :)
-(: Description: Examines that the fn:iri-to-uri function does escape not the "&" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example&amp;amp;example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-19.xq
deleted file mode 100644
index 9c791bc9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-19 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "=" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example=example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-2.xq
deleted file mode 100644
index 8913cb5a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-2 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape numbers.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example0123456789") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-20.xq
deleted file mode 100644
index ba1d5269..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-20 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape "+" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example+example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-21.xq
deleted file mode 100644
index a8f9966b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-21.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-21 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "$" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example$example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-22.xq
deleted file mode 100644
index 1a91f8c2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-22.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-22 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "," symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example,example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-23.xq
deleted file mode 100644
index 179ea5d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-23.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-23 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "[" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example[example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-24.xq
deleted file mode 100644
index 58576aa9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-24.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-24:)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "]" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example]example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-25.xq
deleted file mode 100644
index cd1fc364..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-25.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-25:)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "%" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example%example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-26.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-26.xq
deleted file mode 100644
index 5f619ba3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-26.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-26:)
-(: Description: Examines that the fn:iri-to-uri with an iri that contains a space. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-3.xq
deleted file mode 100644
index 60866847..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-3 :)
-(: Description: Examines that the fn:iri-to-uri function does not escapes the "#" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example#example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-4.xq
deleted file mode 100644
index 2bda22bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-4 :)
-(: Description: Examines that the fn:iri-to-uri function does not escapes the "-" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example-example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-5.xq
deleted file mode 100644
index f6e732a2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-5 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "_" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example_example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-6.xq
deleted file mode 100644
index 4e0fe5bb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-6 :)
-(: Description: Examines that the fn:iri-to-uri function does not escapes the "." symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example.example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-7.xq
deleted file mode 100644
index 81db9c78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-7 :)
-(: Description: Examines that the fn:iri-to-uri function does escape not the "!" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example!example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-8.xq
deleted file mode 100644
index d4aa7337..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-8 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "~" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example~example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-9.xq
deleted file mode 100644
index 4abd4bde..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-iri-to-uri-9 :)
-(: Description: Examines that the fn:iri-to-uri function does not escape the "*" symbol.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:iri-to-uri("example*example") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-1.xq
deleted file mode 100644
index 0a9bb8f9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-iri-to-uri1args-1:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:25:29+01:00:)
-(:Purpose:Test iri-to-uri from example defined in functions and operators specification:)
-(:*******************************************************:)
-
-iri-to-uri("http://www.example.com/00/Weather/CA/Los%20Angeles#ocean") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-2.xq
deleted file mode 100644
index 307572c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-iri-to-uri1args-2:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:09:57+01:00:)
-(:Purpose:Test iri-to-uri from example defined in functions and operators specification:)
-(:*******************************************************:)
-
-iri-to-uri("http://www.example.com/~bébé") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-3.xq
deleted file mode 100644
index 4d1bfd51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-iri-to-uri1args-3:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:31:46+01:00:)
-(:Purpose:Test iri-to-uri with zero-length string argument:)
-(:*******************************************************:)
-
-iri-to-uri('') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-4.xq
deleted file mode 100644
index 9e2696da..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-iri-to-uri1args-4:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:32:41+01:00:)
-(:Purpose:Test iri-to-uri with empty sequence argument:)
-(:*******************************************************:)
-
-iri-to-uri(()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-5.xq
deleted file mode 100644
index 56c7a31f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-iri-to-uri1args-5:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:33:57+01:00:)
-(:Purpose:test iri-to-uri with invalid argument type:)
-(:*******************************************************:)
-
-iri-to-uri(12) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-6.xq
deleted file mode 100644
index 258b6b22..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/EscapingFuncs/IRIToURIfunc/fn-iri-to-uri1args-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-iri-to-uri1args-6:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:34:39+01:00:)
-(:Purpose:test iri-to-uri with incorrect arity:)
-(:*******************************************************:)
-
-iri-to-uri('',()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-1.xq
deleted file mode 100644
index f15958f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-1.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-concat-1 :)
-(: Description: Evaluation of concat function as per example 1 (for this function) :)
-(: from the F&O specs. :)
-
-fn:concat('un', 'grateful') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-10.xq
deleted file mode 100644
index a5e284e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-10.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-10 :)
-(: Description: Evaluation of concat function with argument set to "*****":)
-
-fn:concat("**","***") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-11.xq
deleted file mode 100644
index 2a0e5bfe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-11.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-11 :)
-(: Description: Evaluation of concat function with argument that uses another concat function:)
-
-fn:concat(fn:concat("zzz","zz"),"123") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-12.xq
deleted file mode 100644
index be00fb7f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-12.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-12 :)
-(: Description: Evaluation of concat function as an argument to the "fn:boolean" function:)
-
-fn:boolean(fn:concat("ab","cde")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-13.xq
deleted file mode 100644
index b3245e7f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-13 :)
-(: Description: Evaluation of concat function as an argument to the "fn:string" function:)
-
-fn:string(fn:concat("abc","de")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-14.xq
deleted file mode 100644
index 603e57b4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-14 :)
-(: Description: Evaluation of concat function as an argument to the "fn:not" function:)
-
-fn:not(fn:concat("ab","cde")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-15.xq
deleted file mode 100644
index 7e5022cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-15 :)
-(: Description: Evaluation of concat function with argument set to "%$",#@!":)
-
-fn:concat("%$","#@!") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-16.xq
deleted file mode 100644
index 5ae92182..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-16.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-16 :)
-(: Description: Evaluation of concat function with argument set to "concat","concat":)
-
-fn:concat("concat","concat") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-17.xq
deleted file mode 100644
index 53b23fbb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-17 :)
-(: Description: Evaluation of concat function as part of a boolean expression:)
-
-fn:concat("abc","abc") and fn:concat("abc","abc") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-2.xq
deleted file mode 100644
index 0ff7845d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-2.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-concat-2 :)
-(: Description: Evaluation of concat function as per example 2 (for this function) :)
-(: from the F&O specs. :)
-
-fn:concat('Thy ', (), 'old ', "groans", "", ' ring', ' yet', ' in', ' my', ' ancient',' ears.') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-3.xq
deleted file mode 100644
index e6670cea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-3.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-concat-3 :)
-(: Description: Evaluation of concat function as per example 3 (for this function) :)
-(: from the F&O specs. :)
-
-fn:concat('Ciao!',()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-4.xq
deleted file mode 100644
index 5d1be5c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-4.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-concat-4 :)
-(: Description: Evaluation of concat function as per example 4 (for this function) :)
-(: from the F&O specs. :)
-
-fn:concat('Ingratitude, ', 'thou ', 'marble-hearted', ' fiend!') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-5.xq
deleted file mode 100644
index 89a59d3b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-5.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-5 :)
-(: Description: Evaluation of concat function that uses only upper case letters as part of argument:)
-
-fn:concat("AB","CD") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-6.xq
deleted file mode 100644
index 8053dc48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-6.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-6 :)
-(: Description: Evaluation of concat function that uses only lower case letters as part of argument:)
-
-fn:concat("abc","de") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-7.xq
deleted file mode 100644
index c0d454de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-7.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-7 :)
-(: Description: Evaluation of concat function that uses both upper and lower case letters as part of argument:)
-
-fn:concat("ABCDE","abcde") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-8.xq
deleted file mode 100644
index e5b9179f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-8.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-concat-8 :)
-(: Description: Evaluation of concat function that uses the empty string as part of argument:)
-(: Uses "fn:count" to avoid the empty file :)
-
-fn:count(fn:concat("","")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-9.xq
deleted file mode 100644
index ef9ce021..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concat-9.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-concat-9 :)
-(: Description: Evaluation of concat function that uses the "upper-case" function as part of argument:)
-
-fn:concat(fn:upper-case("Abc"),fn:upper-case("DH")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-1.xq
deleted file mode 100644
index 09532577..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdbl2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:double(lower bound) :)
-(:$arg2 = xs:double(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:double("-1.7976931348623157E308"),xs:double("-1.7976931348623157E308")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-2.xq
deleted file mode 100644
index cc89ff00..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdbl2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:double(mid range) :)
-(:$arg2 = xs:double(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:double("0"),xs:double("-1.7976931348623157E308")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-3.xq
deleted file mode 100644
index b7d950dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdbl2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:double(upper bound) :)
-(:$arg2 = xs:double(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:double("1.7976931348623157E308"),xs:double("-1.7976931348623157E308")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-4.xq
deleted file mode 100644
index 9c70a371..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdbl2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:double(lower bound) :)
-(:$arg2 = xs:double(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:double("-1.7976931348623157E308"),xs:double("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-5.xq
deleted file mode 100644
index 4a3fbd27..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdbl2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdbl2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:double(lower bound) :)
-(:$arg2 = xs:double(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:double("-1.7976931348623157E308"),xs:double("1.7976931348623157E308")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-1.xq
deleted file mode 100644
index f06259ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdec2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:decimal(lower bound) :)
-(:$arg2 = xs:decimal(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:decimal("-999999999999999999"),xs:decimal("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-2.xq
deleted file mode 100644
index 0c820827..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdec2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:decimal(mid range) :)
-(:$arg2 = xs:decimal(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:decimal("617375191608514839"),xs:decimal("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-3.xq
deleted file mode 100644
index 07ccf48b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdec2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:decimal(upper bound) :)
-(:$arg2 = xs:decimal(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:decimal("999999999999999999"),xs:decimal("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-4.xq
deleted file mode 100644
index c0636aba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdec2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:decimal(lower bound) :)
-(:$arg2 = xs:decimal(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:decimal("-999999999999999999"),xs:decimal("617375191608514839")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-5.xq
deleted file mode 100644
index 9d3492f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatdec2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatdec2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:decimal(lower bound) :)
-(:$arg2 = xs:decimal(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:decimal("-999999999999999999"),xs:decimal("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-1.xq
deleted file mode 100644
index dbff5457..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatflt2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:float(lower bound) :)
-(:$arg2 = xs:float(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:float("-3.4028235E38"),xs:float("-3.4028235E38")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-2.xq
deleted file mode 100644
index 33a8ae10..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatflt2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:float(mid range) :)
-(:$arg2 = xs:float(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:float("0"),xs:float("-3.4028235E38")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-3.xq
deleted file mode 100644
index db06b751..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatflt2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:float(upper bound) :)
-(:$arg2 = xs:float(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:float("3.4028235E38"),xs:float("-3.4028235E38")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-4.xq
deleted file mode 100644
index 78880562..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatflt2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:float(lower bound) :)
-(:$arg2 = xs:float(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:float("-3.4028235E38"),xs:float("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-5.xq
deleted file mode 100644
index 8de23af9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatflt2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatflt2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:float(lower bound) :)
-(:$arg2 = xs:float(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:float("-3.4028235E38"),xs:float("3.4028235E38")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-1.xq
deleted file mode 100644
index 027574bf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatint2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:int(lower bound) :)
-(:$arg2 = xs:int(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:int("-2147483648"),xs:int("-2147483648")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-2.xq
deleted file mode 100644
index e69d98ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatint2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:int(mid range) :)
-(:$arg2 = xs:int(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:int("-1873914410"),xs:int("-2147483648")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-3.xq
deleted file mode 100644
index d5f97c4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatint2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:int(upper bound) :)
-(:$arg2 = xs:int(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:int("2147483647"),xs:int("-2147483648")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-4.xq
deleted file mode 100644
index 181e6b70..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatint2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:int(lower bound) :)
-(:$arg2 = xs:int(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:int("-2147483648"),xs:int("-1873914410")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-5.xq
deleted file mode 100644
index e5c6fb11..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatint2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatint2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:int(lower bound) :)
-(:$arg2 = xs:int(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:int("-2147483648"),xs:int("2147483647")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-1.xq
deleted file mode 100644
index 3f1dc4f9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatintg2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:integer(lower bound) :)
-(:$arg2 = xs:integer(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:integer("-999999999999999999"),xs:integer("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-2.xq
deleted file mode 100644
index 11916b95..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatintg2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:integer(mid range) :)
-(:$arg2 = xs:integer(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:integer("830993497117024304"),xs:integer("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-3.xq
deleted file mode 100644
index 69cd6d86..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatintg2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:integer(upper bound) :)
-(:$arg2 = xs:integer(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:integer("999999999999999999"),xs:integer("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-4.xq
deleted file mode 100644
index 799c77db..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatintg2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:integer(lower bound) :)
-(:$arg2 = xs:integer(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:integer("-999999999999999999"),xs:integer("830993497117024304")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-5.xq
deleted file mode 100644
index dd987045..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatintg2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatintg2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:integer(lower bound) :)
-(:$arg2 = xs:integer(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:integer("-999999999999999999"),xs:integer("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-1.xq
deleted file mode 100644
index 58f31ccd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatlng2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:long(lower bound) :)
-(:$arg2 = xs:long(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:long("-92233720368547758"),xs:long("-92233720368547758")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-2.xq
deleted file mode 100644
index 17b7fc63..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatlng2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:long(mid range) :)
-(:$arg2 = xs:long(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:long("-47175562203048468"),xs:long("-92233720368547758")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-3.xq
deleted file mode 100644
index 7beb202e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatlng2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:long(upper bound) :)
-(:$arg2 = xs:long(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:long("92233720368547758"),xs:long("-92233720368547758")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-4.xq
deleted file mode 100644
index 248f6e88..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatlng2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:long(lower bound) :)
-(:$arg2 = xs:long(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:long("-92233720368547758"),xs:long("-47175562203048468")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-5.xq
deleted file mode 100644
index c7740ed1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatlng2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatlng2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:long(lower bound) :)
-(:$arg2 = xs:long(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:long("-92233720368547758"),xs:long("92233720368547758")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-1.xq
deleted file mode 100644
index 2e4a72ae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnint2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:negativeInteger(lower bound) :)
-(:$arg2 = xs:negativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:negativeInteger("-999999999999999999"),xs:negativeInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-2.xq
deleted file mode 100644
index 87444bee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnint2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:negativeInteger(mid range) :)
-(:$arg2 = xs:negativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:negativeInteger("-297014075999096793"),xs:negativeInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-3.xq
deleted file mode 100644
index b5db91ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnint2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:negativeInteger(upper bound) :)
-(:$arg2 = xs:negativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:negativeInteger("-1"),xs:negativeInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-4.xq
deleted file mode 100644
index cecd131e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnint2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:negativeInteger(lower bound) :)
-(:$arg2 = xs:negativeInteger(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:negativeInteger("-999999999999999999"),xs:negativeInteger("-297014075999096793")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-5.xq
deleted file mode 100644
index cb16fa17..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnint2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnint2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:negativeInteger(lower bound) :)
-(:$arg2 = xs:negativeInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:negativeInteger("-999999999999999999"),xs:negativeInteger("-1")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-1.xq
deleted file mode 100644
index 386d1dd2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnni2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonNegativeInteger(lower bound) :)
-(:$arg2 = xs:nonNegativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonNegativeInteger("0"),xs:nonNegativeInteger("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-2.xq
deleted file mode 100644
index 8c6ec590..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnni2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonNegativeInteger(mid range) :)
-(:$arg2 = xs:nonNegativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonNegativeInteger("303884545991464527"),xs:nonNegativeInteger("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-3.xq
deleted file mode 100644
index fb864faa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnni2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonNegativeInteger(upper bound) :)
-(:$arg2 = xs:nonNegativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonNegativeInteger("999999999999999999"),xs:nonNegativeInteger("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-4.xq
deleted file mode 100644
index 34bdd9fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnni2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonNegativeInteger(lower bound) :)
-(:$arg2 = xs:nonNegativeInteger(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonNegativeInteger("0"),xs:nonNegativeInteger("303884545991464527")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-5.xq
deleted file mode 100644
index d17dc245..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnni2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnni2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonNegativeInteger(lower bound) :)
-(:$arg2 = xs:nonNegativeInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonNegativeInteger("0"),xs:nonNegativeInteger("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-1.xq
deleted file mode 100644
index 1fc352ca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnpi2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonPositiveInteger(lower bound) :)
-(:$arg2 = xs:nonPositiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonPositiveInteger("-999999999999999999"),xs:nonPositiveInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-2.xq
deleted file mode 100644
index bd1f497d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnpi2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonPositiveInteger(mid range) :)
-(:$arg2 = xs:nonPositiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonPositiveInteger("-475688437271870490"),xs:nonPositiveInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-3.xq
deleted file mode 100644
index 53f7e5c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnpi2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonPositiveInteger(upper bound) :)
-(:$arg2 = xs:nonPositiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonPositiveInteger("0"),xs:nonPositiveInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-4.xq
deleted file mode 100644
index b5caae2f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnpi2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonPositiveInteger(lower bound) :)
-(:$arg2 = xs:nonPositiveInteger(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonPositiveInteger("-999999999999999999"),xs:nonPositiveInteger("-475688437271870490")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-5.xq
deleted file mode 100644
index 12f55058..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatnpi2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatnpi2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:nonPositiveInteger(lower bound) :)
-(:$arg2 = xs:nonPositiveInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:nonPositiveInteger("-999999999999999999"),xs:nonPositiveInteger("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-1.xq
deleted file mode 100644
index 78b30aff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatpint2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:positiveInteger(lower bound) :)
-(:$arg2 = xs:positiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:positiveInteger("1"),xs:positiveInteger("1")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-2.xq
deleted file mode 100644
index feaf1663..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatpint2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:positiveInteger(mid range) :)
-(:$arg2 = xs:positiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:positiveInteger("52704602390610033"),xs:positiveInteger("1")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-3.xq
deleted file mode 100644
index 302ff731..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatpint2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:positiveInteger(upper bound) :)
-(:$arg2 = xs:positiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:positiveInteger("999999999999999999"),xs:positiveInteger("1")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-4.xq
deleted file mode 100644
index d22d39dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatpint2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:positiveInteger(lower bound) :)
-(:$arg2 = xs:positiveInteger(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:positiveInteger("1"),xs:positiveInteger("52704602390610033")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-5.xq
deleted file mode 100644
index ae1e08e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatpint2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatpint2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:positiveInteger(lower bound) :)
-(:$arg2 = xs:positiveInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:positiveInteger("1"),xs:positiveInteger("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-1.xq
deleted file mode 100644
index 4fff2fe2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatsht2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:short(lower bound) :)
-(:$arg2 = xs:short(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:short("-32768"),xs:short("-32768")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-2.xq
deleted file mode 100644
index 06fe00f4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatsht2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:short(mid range) :)
-(:$arg2 = xs:short(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:short("-5324"),xs:short("-32768")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-3.xq
deleted file mode 100644
index 5b45554f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatsht2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:short(upper bound) :)
-(:$arg2 = xs:short(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:short("32767"),xs:short("-32768")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-4.xq
deleted file mode 100644
index c0667db6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatsht2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:short(lower bound) :)
-(:$arg2 = xs:short(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:short("-32768"),xs:short("-5324")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-5.xq
deleted file mode 100644
index e9e71e99..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatsht2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatsht2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:short(lower bound) :)
-(:$arg2 = xs:short(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:short("-32768"),xs:short("32767")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-1.xq
deleted file mode 100644
index d95c43dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatulng2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedLong(lower bound) :)
-(:$arg2 = xs:unsignedLong(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedLong("0"),xs:unsignedLong("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-2.xq
deleted file mode 100644
index 95efe909..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatulng2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedLong(mid range) :)
-(:$arg2 = xs:unsignedLong(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedLong("130747108607674654"),xs:unsignedLong("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-3.xq
deleted file mode 100644
index 1f100a90..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatulng2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedLong(upper bound) :)
-(:$arg2 = xs:unsignedLong(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedLong("184467440737095516"),xs:unsignedLong("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-4.xq
deleted file mode 100644
index 7b0a598d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatulng2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedLong(lower bound) :)
-(:$arg2 = xs:unsignedLong(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedLong("0"),xs:unsignedLong("130747108607674654")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-5.xq
deleted file mode 100644
index 8e09baa2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatulng2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatulng2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedLong(lower bound) :)
-(:$arg2 = xs:unsignedLong(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedLong("0"),xs:unsignedLong("184467440737095516")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-1.xq
deleted file mode 100644
index 74e0508e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatusht2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedShort(lower bound) :)
-(:$arg2 = xs:unsignedShort(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedShort("0"),xs:unsignedShort("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-2.xq
deleted file mode 100644
index 5e06d202..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatusht2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedShort(mid range) :)
-(:$arg2 = xs:unsignedShort(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedShort("44633"),xs:unsignedShort("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-3.xq
deleted file mode 100644
index 72894764..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatusht2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedShort(upper bound) :)
-(:$arg2 = xs:unsignedShort(lower bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedShort("65535"),xs:unsignedShort("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-4.xq
deleted file mode 100644
index 0000c1b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatusht2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedShort(lower bound) :)
-(:$arg2 = xs:unsignedShort(mid range) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedShort("0"),xs:unsignedShort("44633")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-5.xq
deleted file mode 100644
index 569a2ebe..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/ConcatFunc/fn-concatusht2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: concatusht2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Wed Dec 15 15:41:48 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "concat" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:unsignedShort(lower bound) :)
-(:$arg2 = xs:unsignedShort(upper bound) :)
-(:*******************************************************:)
-
-fn:concat(xs:unsignedShort("0"),xs:unsignedShort("65535")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-1.xq
deleted file mode 100644
index c54cd85a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-1.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-lower-case-1 :)
-(: Description: Evaluation of lower-case function as per example 1 (for this function) :)
-(: from the F&O specs. :)
-
-fn:lower-case("ABc!D") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-10.xq
deleted file mode 100644
index 5e7cd634..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-10.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-10 :)
-(: Description: Evaluation of lower-case function with argument set to "*****":)
-
-fn:lower-case("*****") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-11.xq
deleted file mode 100644
index f47360d0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-11.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-11 :)
-(: Description: Evaluation of lower-case function with argument set to another lower-case function:)
-
-fn:lower-case(lower-case("zzzzz")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-12.xq
deleted file mode 100644
index 53f2b966..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-12.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-12 :)
-(: Description: Evaluation of lower-case function as an argument to the "fn:boolean" function:)
-
-fn:boolean(fn:lower-case("abcde")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-13.xq
deleted file mode 100644
index 2c22cb48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-13 :)
-(: Description: Evaluation of lower-case function as an argument to the "fn:concat" function:)
-
-fn:concat(fn:lower-case("abcde"), fn:lower-case("fghi")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-14.xq
deleted file mode 100644
index 3a6d9218..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-14 :)
-(: Description: Evaluation of lower-case function as an argument to the "fn:not" function:)
-
-fn:not(fn:lower-case("abcde")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-15.xq
deleted file mode 100644
index 053bd045..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-15 :)
-(: Description: Evaluation of lower-case function with argument set to "%$#@!":)
-
-fn:lower-case("%$#@!") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-16.xq
deleted file mode 100644
index fe9cc2de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-16.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-16 :)
-(: Description: Evaluation of lower-case function with argument set to "lower-case":)
-
-fn:lower-case("lower-case") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-17.xq
deleted file mode 100644
index 12b8d5dc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-17 :)
-(: Description: Evaluation of lower-case function as part of a boolean expression:)
-
-fn:lower-case("abc") and fn:lower-case("abc") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-2.xq
deleted file mode 100644
index 1028af30..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-2.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-lower-case-2 :)
-(: Description: Evaluation of lower-case function using the empty sequence :)
-(: Uses the count function to avoid empty file. :)
-
-fn:count(fn:lower-case(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-3.xq
deleted file mode 100644
index 9876dc79..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-3.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-lower-case-3 :)
-(: Description: Evaluation of lower-case function that uses only numbers as part of argument:)
-(: Use of count function to avoid empty file. :)
-
-fn:lower-case("12345") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-4.xq
deleted file mode 100644
index 384a7e02..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-4.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-4 :)
-(: Description: Evaluation of lower-case function that uses both numbers and letters as part of argument:)
-
-fn:lower-case("12345abcd") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-5.xq
deleted file mode 100644
index dbe57ea5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-5.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-5 :)
-(: Description: Evaluation of lower-case function that uses only upper case letters as part of argument:)
-
-fn:lower-case("ABCD") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-6.xq
deleted file mode 100644
index 2cfe5a6a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-6.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-6 :)
-(: Description: Evaluation of lower-case function that uses only lower case letters as part of argument:)
-
-fn:lower-case("abcde") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-7.xq
deleted file mode 100644
index d6fed6ad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-7.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-7 :)
-(: Description: Evaluation of lower-case function that uses both upper and lower case letters as part of argument:)
-
-fn:lower-case("ABCDEabcde") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-8.xq
deleted file mode 100644
index 48fb8fd0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-8.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-lower-case-8 :)
-(: Description: Evaluation of lower-case function that uses the empty string as part of argument:)
-(: Uses "fn:count" to avoid the empty file :)
-
-fn:count(fn:lower-case("")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-9.xq
deleted file mode 100644
index a522d239..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case-9.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-lower-case-9 :)
-(: Description: Evaluation of lower-case function that uses the "upper-case" as part of argument:)
-
-fn:lower-case(upper-case("AbcDH")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-1.xq
deleted file mode 100644
index 3fd5b1ce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: lower-case1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "lower-case" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:lower-case(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-2.xq
deleted file mode 100644
index 922ae7dc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: lower-case1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "lower-case" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:lower-case(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-3.xq
deleted file mode 100644
index e07a5ac8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/LowerCaseFunc/fn-lower-case1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: lower-case1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "lower-case" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:lower-case(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-1.xq
deleted file mode 100644
index 4f2cff78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-1.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-normalize-space-1 :)
-(: Description: Evaluation of fn-normalize-space function as per example 1 for this function from the Functions and Operators specs. :)
-
-fn:normalize-space(" The wealthy curled darlings of our nation. ") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-10.xq
deleted file mode 100644
index 1fa215b4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-10.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-normalize-space-10 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing only a single space. :)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space(" ")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-11.xq
deleted file mode 100644
index 935475e9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-11.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-normalize-space-11 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing the zero length string. :)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space("")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-12.xq
deleted file mode 100644
index f633414e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-12.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-normalize-space-12 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing a single tab character. :)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space(" ")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-13.xq
deleted file mode 100644
index 66daddd3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-13.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-normalize-space-13 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing only tab characters. :)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space(" ")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-14.xq
deleted file mode 100644
index f2115dee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-14.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: fn-normalize-space-14 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing only a single newline character. :)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space("
-")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-15.xq
deleted file mode 100644
index f073a6aa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-space-15 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing only multiple newline characters. :)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space("
-
-
-")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-16.xq
deleted file mode 100644
index 8dc21dd6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-16.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-normalize-space-16 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing only spaces and tab characters.:)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space(" ")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-17.xq
deleted file mode 100644
index 9ad8c75f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-space-17 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing only spaces and newline characters.:)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space("
-
-
-")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-18.xq
deleted file mode 100644
index 900e8b76..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-space-18 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing only tab and newline characters.:)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space("
-
-
-")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-19.xq
deleted file mode 100644
index 0c7c03ef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-19.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-normalize-space-19 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing tabs and numerical characters.:)
-(: Use fn:count to avoid empty file :)
-
-fn:normalize-space(" 12345") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-2.xq
deleted file mode 100644
index 62b63ca6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-normalize-space-2 :)
-(: Description: Evaluation of fn-normalize-space function with no arguments and no context node. :)
-
-declare namespace eg = "http://example.org";
-
-declare function eg:noContextFunction()
- {
- fn:normalize-space()
-};
-
-eg:noContextFunction() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-20.xq
deleted file mode 100644
index d16b22ce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-20.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-normalize-space-20 :)
-(: Description: Evaluation of fn-normalize-space function with argument referencing fn:string function.:)
-
-fn:normalize-space(fn:string(" ABC ")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-21.xq
deleted file mode 100644
index 83bd37f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-21.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-normalize-space-21 :)
-(: Description: Evaluation of fn-normalize-space function with argument set to another fn:normalize-space function.:)
-
-fn:normalize-space(fn:normalize-space(" ABC")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-3.xq
deleted file mode 100644
index 754a9fcf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-3.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-normalize-space-3 :)
-(: Description: Evaluation of fn-normalize-space function with argument containing one tab character. :)
-
-fn:normalize-space("This text should contains no tabs") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-4.xq
deleted file mode 100644
index f7eda396..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-4.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-normalize-space-4 :)
-(: Description: Evaluation of fn-normalize-space function with argument containing one newline character. :)
-
-fn:normalize-space("This text should contains no
- newline characters.") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-5.xq
deleted file mode 100644
index 7de4e107..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-5.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-normalize-space-5 :)
-(: Description: Evaluation of fn-normalize-space function with argument containing multiple tab character. :)
-
-fn:normalize-space("This text should contains no tab characters.") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-6.xq
deleted file mode 100644
index 1e60514a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-6.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(: Name: fn-normalize-space-6 :)
-(: Description: Evaluation of fn-normalize-space function with argument containing multiple newline characters. :)
-
-fn:normalize-space("This text should contains no
-newline
-
-characters.") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-7.xq
deleted file mode 100644
index d36ff767..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-7.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-normalize-space-7 :)
-(: Description: Evaluation of fn-normalize-space function with argument containing a tab and a newline characters. :)
-
-fn:normalize-space("This text should contains no tabs or
-newline characters.") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-8.xq
deleted file mode 100644
index 0cf05aa7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-8.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(: Name: fn-normalize-space-8 :)
-(: Description: Evaluation of fn-normalize-space function with argument containing multiple tab and a newline characters. :)
-
-fn:normalize-space("This text should contains no tabs or
-newline
-
-characters.") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-9.xq
deleted file mode 100644
index 7fdd7f93..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space-9.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-normalize-space-9 :)
-(: Description: Evaluation of fn-normalize-space function with argument string containing only spaces. :)
-(: Use fn:count to avoid empty file :)
-
-fn:count(fn:normalize-space(" ")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space0args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space0args-1.xq
deleted file mode 100644
index 9c08d6d2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space0args-1.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-space0args-1:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T15:54:03-04:00:)
-(:Purpose:Test normalize-space without argument:)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context external;
-(: insert-end :)
-
-$input-context//doc/normalize-space(a[normalize-space() = 'Hello, How are you?']) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-1.xq
deleted file mode 100644
index 043c905d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: normalize-space1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "normalize-space" function :)
-(: with the arguments set as follows: :)
-(:$arg = notNormalizedString(lower bound) :)
-(:*******************************************************:)
-
-fn:normalize-space("This is a charac") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-2.xq
deleted file mode 100644
index 5a325ef7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: normalize-space1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "normalize-space" function :)
-(: with the arguments set as follows: :)
-(:$arg = notNormalizedString(mid range) :)
-(:*******************************************************:)
-
-fn:normalize-space("This is a ch") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-3.xq
deleted file mode 100644
index 7aeee649..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: normalize-space1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "normalize-space" function :)
-(: with the arguments set as follows: :)
-(:$arg = notNormalizedString(upper bound) :)
-(:*******************************************************:)
-
-fn:normalize-space("This is a charac") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-4.xq
deleted file mode 100644
index 27c91bd6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeSpaceFunc/fn-normalize-space1args-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-space1args-4:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T15:38:46-04:00:)
-(:Purpose:Test normalize-space with an empty sequence argument:)
-(:*******************************************************:)
-
-normalize-space(()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-1.xq
deleted file mode 100644
index 7e27cc51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-unicode-1 :)
-(: Description: Evaluation of fn:normalize-unicode to ensure that " NFC " is the same as "NFC".:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:concat(fn:normalize-unicode("&#x00C5;"," NFC "),fn:normalize-unicode("&#x00C5;","NFC")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-2.xq
deleted file mode 100644
index 30c1d2d6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-unicode-2 :)
-(: Description: Evaluation of fn:normalize-unicode with a normalization form that attempts to raise a non-implemented form:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:normalize-unicode("è","chancesareyoudonotsupportthis123ifyoudowaoo") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-3.xq
deleted file mode 100644
index 1a563043..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-unicode-3 :)
-(: Description: Evaluation of fn:normalize-unicode with nothing to normalize and used as argument to fn:upper-case:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:upper-case(fn:normalize-unicode("normalizedstring")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-4.xq
deleted file mode 100644
index 95c48413..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-unicode-4 :)
-(: Description: Evaluation of fn:normalize-unicode with nothing to normalize and used as argument to fn:lower-case:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:lower-case(fn:normalize-unicode("NORMALIZEDSTRING")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-5.xq
deleted file mode 100644
index f48c06f9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-unicode-5 :)
-(: Description: Evaluation of fn:normalize-unicode with nothing to normalize and used as argument to fn:string-length:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string-length(fn:normalize-unicode("NORMALIZEDSTRING")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-6.xq
deleted file mode 100644
index ccf24a36..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-unicode-6 :)
-(: Description: Evaluation of fn:normalize-unicode with nothing to normalize and used as argument to fn:concat:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:concat(fn:normalize-unicode("NORMALIZEDSTRING"),"another string") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-7.xq
deleted file mode 100644
index 93684f0d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-normalize-unicode-7 :)
-(: Description: Evaluation of fn:normalize-unicode with nothing to normalize and used as argument to fn:substring:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:substring(fn:normalize-unicode("NORMALIZEDSTRING"),5) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-1.xq
deleted file mode 100644
index 54373edb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode1args-1:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:46:35+01:00:)
-(:Purpose:Test normalize-unicode with simple text input:)
-(:*******************************************************:)
-
-normalize-unicode('Nothing to normalize.') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-2.xq
deleted file mode 100644
index b955c686..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode1args-2:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:51:28+01:00:)
-(:Purpose:Test normalize-unicode with empty sequence argument:)
-(:*******************************************************:)
-
-normalize-unicode(()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-3.xq
deleted file mode 100644
index f64f1462..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode1args-3:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:53:40+01:00:)
-(:Purpose:Test fn:normalize-unicode on combining characters for LATIN CAPITAL LETTER A WITH RING (w/ ACUTE) and ANGSTROM SIGN:)
-(:*******************************************************:)
-
-matches('&#x01FA;', normalize-unicode('&#x0041;&#x030A;&#x0301;')) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-4.xq
deleted file mode 100644
index 470755a6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode1args-4:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:54:46+01:00:)
-(:Purpose:Test fn:normalize-unicode on combining characters for LATIN CAPITAL LETTER A WITH RING (w/ ACUTE) and ANGSTROM SIGN:)
-(:*******************************************************:)
-
-matches('&#x00C5;', normalize-unicode('&#x0041;&#x030A;')) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-5.xq
deleted file mode 100644
index b752d0a7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode1args-5:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:55:46+01:00:)
-(:Purpose:Test fn:normalize-unicode on combining characters for LATIN CAPITAL LETTER A WITH RING (w/ ACUTE) and ANGSTROM SIGN:)
-(:*******************************************************:)
-
-matches('&#x0041;&#x030A;', normalize-unicode('&#x0041;&#x030A;')) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-6.xq
deleted file mode 100644
index fbf82e89..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode1args-6:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:56:41+01:00:)
-(:Purpose:Test fn:normalize-unicode on combining characters for LATIN CAPITAL LETTER A WITH RING (w/ ACUTE) and ANGSTROM SIGN:)
-(:*******************************************************:)
-
-(normalize-unicode('&#x00C5;') eq normalize-unicode('&#x212B;')) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-7.xq
deleted file mode 100644
index 360400e2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode1args-7:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T16:00:37+01:00:)
-(:Purpose:Test normalize-unicode with invalid argument types:)
-(:*******************************************************:)
-
-normalize-unicode(12) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-8.xq
deleted file mode 100644
index cea8eaf3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode1args-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode1args-8:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T16:01:27+01:00:)
-(:Purpose:Test normalize-unicode with incorrect arity:)
-(:*******************************************************:)
-
-normalize-unicode('','','') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-1.xq
deleted file mode 100644
index 841e50c7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:1fn-normalize-unicode2args-1:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:48:33+01:00:)
-(:Purpose:Test normalize-unicode with simple text input and NFC:)
-(:*******************************************************:)
-
-normalize-unicode('Nothing to normalize.', 'NFC') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-2.xq
deleted file mode 100644
index 2be4e1d6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode2args-2:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:49:27+01:00:)
-(:Purpose:Test normalize-unicode with simple text input and NFC spelled differently:)
-(:*******************************************************:)
-
-normalize-unicode('Nothing to normalize.', 'nFc') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-3.xq
deleted file mode 100644
index 6967f992..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode2args-3:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:50:49+01:00:)
-(:Purpose:Test normalize-unicode with empty sequence argument and NFC:)
-(:*******************************************************:)
-
-normalize-unicode((), 'NFC') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-4.xq
deleted file mode 100644
index 6f328f91..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode2args-4:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T15:58:10+01:00:)
-(:Purpose:Test fn:normalize-unicode where the second argument is the zero-length string, no normalization is performed:)
-(:*******************************************************:)
-
-(normalize-unicode('&#x00C5;', '') eq normalize-unicode('&#x212B;', '')) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-5.xq
deleted file mode 100644
index 2779d3f6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode2args-5:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T16:03:05+01:00:)
-(:Purpose:Test normalize-unicode with invalid argument types:)
-(:*******************************************************:)
-
-normalize-unicode('',()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-6.xq
deleted file mode 100644
index d3ee87ab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/NormalizeUnicodeFunc/fn-normalize-unicode2args-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-normalize-unicode2args-6:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-29T16:04:28+01:00:)
-(:Purpose:Test normalize-unicode with invalid argument types:)
-(:*******************************************************:)
-
-normalize-unicode('',12) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-1.xq
deleted file mode 100644
index 431b621a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function as per :)
-(: example 1 for this frunction in F&O sepecs. :)
-(:*******************************************************:)
-fn:string-join(('Now', 'is', 'the', 'time', '...'), ' ') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-10.xq
deleted file mode 100644
index ff3b6ed1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-10.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-10 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = (" ") :)
-(:$arg2 = " AAAAABBBBB". Use of count to avoid empty file:)
-(:*******************************************************:)
-
-fn:count(fn:string-join((" "),"AAAAABBBBB")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-11.xq
deleted file mode 100644
index 3b8e4896..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-11 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:string-join((),"A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-12.xq
deleted file mode 100644
index 3f0929de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-12 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:string-join(("A"),"B")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-13.xq
deleted file mode 100644
index 6220eb68..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-13.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-13 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string("A") :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:string-join((xs:string("A")),"A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-14.xq
deleted file mode 100644
index 91a04092..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-14.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-14 :)
-(:Written By: Carmelo Montanez :)
-(:Date: June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = xs:string("A") :)
-(:*******************************************************:)
-
-fn:string-join(("A"),xs:string("A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-15.xq
deleted file mode 100644
index 83f646fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-15.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-15 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = "a" :)
-(:*******************************************************:)
-
-fn:string-join(("A"),"a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-16.xq
deleted file mode 100644
index 533ba17d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-16.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-16 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "a" :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:string-join(("a"),"A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-17.xq
deleted file mode 100644
index 41e72801..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-17.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-17 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Jun 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "string-join" :)
-(:$arg2 = "string-join" :)
-(:*******************************************************:)
-
-fn:string-join("string-join","string-join") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-18.xq
deleted file mode 100644
index e35f1684..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-18.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-18 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Jun 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "string-joinstring-join" :)
-(:$arg2 = "string-join" :)
-(:*******************************************************:)
-
-fn:string-join(("string-joinstring-join"),"string-join") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-19.xq
deleted file mode 100644
index e68d4a44..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-19.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-19 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Jun 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "****" :)
-(:$arg2 = "***" :)
-(:*******************************************************:)
-
-fn:string-join("****","***") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-2.xq
deleted file mode 100644
index ac1fc7b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function as per :)
-(:example 2 for this function in the F&O specs. :)
-(:*******************************************************:)
-fn:string-join(('Blow, ', 'blow, ', 'thou ', 'winter ', 'wind!'), '') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-20.xq
deleted file mode 100644
index aaabefeb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-20.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-20 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Jun 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "12345" :)
-(:$arg2 = "1234" :)
-(:*******************************************************:)
-
-fn:string-join("12345","1234") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-21.xq
deleted file mode 100644
index 9cf4ee47..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-21.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-21 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Jun 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "string-join :)
-(:$arg2 = "nioj-gnirts :)
-(:("string-join" backwards) :)
-(:*******************************************************:)
-
-fn:string-join("string-join","nioj-gnirts") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-3.xq
deleted file mode 100644
index e59db5f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function as per :)
-(:example 3 for this function in the F&O specs. Use of :)
-(:fn:count to avoid empty file. :)
-(:*******************************************************:)
-
-fn:count(fn:string-join((), 'separator')) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-4.xq
deleted file mode 100644
index 839d6aee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:count(fn:string-join((),"")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-5.xq
deleted file mode 100644
index 31781bb5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:count(fn:string-join("","")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-6.xq
deleted file mode 100644
index f360abea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-6.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String". :)
-(:*******************************************************:)
-
-fn:count(fn:string-join("","A Character String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-7.xq
deleted file mode 100644
index e2778e45..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-7.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-fn:count(fn:string-join((),"A Character String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-8.xq
deleted file mode 100644
index b4eabcdd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-8.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-8 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBBCCCCC" :)
-(:$arg2 = "BBBBB" :)
-(:*******************************************************:)
-
-fn:string-join(("AAAAABBBBBCCCCC"),"BBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-9.xq
deleted file mode 100644
index d90d342d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join-9.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-string-join-9 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri June 24, 2005 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = ("AAAAABBBBB") :)
-(:$arg2 = " " :)
-(:*******************************************************:)
-
-fn:string-join(("AAAAABBBBB")," ") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-1.xq
deleted file mode 100644
index 4fc584a3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: string-join2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:string-join(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-2.xq
deleted file mode 100644
index f39ef47a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: string-join2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(mid range) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:string-join(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-3.xq
deleted file mode 100644
index 9743a869..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: string-join2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(upper bound) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:string-join(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-4.xq
deleted file mode 100644
index 2969d5c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: string-join2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:string-join(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-5.xq
deleted file mode 100644
index fd38b2ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringJoinFunc/fn-string-join2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: string-join2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-join" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:string-join(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-1.xq
deleted file mode 100644
index a729db75..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-1.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-string-length-1 :)
-(: Description: Evaluation of string-length function as per example 1 (for this function) :)
-(: from the F&O specs. :)
-
-fn:string-length("Harp not on that string, madam; that is past.") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-10.xq
deleted file mode 100644
index 7bdc5f6f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-10.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-10 :)
-(: Description: Evaluation of string-length function with argument set to "*****":)
-
-fn:string-length("*****") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-11.xq
deleted file mode 100644
index 7da45b21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-11.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-11 :)
-(: Description: Evaluation of string-length function as part of an addition operation:)
-
-fn:string-length("zzzzz") + fn:string-length("zzzzz") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-12.xq
deleted file mode 100644
index 4aa9785d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-12.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-12 :)
-(: Description: Evaluation of string-length function as an argument to the "fn:boolean" function:)
-
-fn:boolean(fn:string-length("abcde")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-13.xq
deleted file mode 100644
index feb4db27..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-13 :)
-(: Description: Evaluation of string-length function as an argument to the "fn:concat" function:)
-
-fn:concat(fn:string-length("abcde"), fn:string-length("fghi")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-14.xq
deleted file mode 100644
index b6d3618e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-14 :)
-(: Description: Evaluation of string-length function as an argument to the "fn:not" function:)
-
-fn:not(fn:string-length("abcde")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-15.xq
deleted file mode 100644
index 607afc02..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-15 :)
-(: Description: Evaluation of string-length function with argument set to "%$#@!":)
-
-fn:string-length("%$#@!") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-16.xq
deleted file mode 100644
index 1139a3c2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-16.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-16 :)
-(: Description: Evaluation of string-length function with argument set to "string-length":)
-
-fn:string-length("string-length") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-17.xq
deleted file mode 100644
index ded7a34c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-17 :)
-(: Description: Evaluation of string-length function as part of a boolean expression:)
-
-fn:string-length("abc") and fn:string-length("abc") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-18.xq
deleted file mode 100644
index 36d10bf4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-18.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(: Name: fn-string-length-18 :)
-(: Description: Evaluation of string-length function with no argument and no context item defined. :)
-
-declare namespace eg = "http://example.org";
-
-declare function eg:noContextFunction()
- {
- fn:string-length()
-};
-
-eg:noContextFunction() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-2.xq
deleted file mode 100644
index f84e3de7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-2.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-2 :)
-(: Description: Evaluation of string-length function using the empty sequence :)
-
-fn:string-length(()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-3.xq
deleted file mode 100644
index d8cb0fdb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-3.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-3 :)
-(: Description: Evaluation of string-length function that uses only numbers as part of argument:)
-
-fn:string-length("12345") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-4.xq
deleted file mode 100644
index 70071e2b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-4.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-4 :)
-(: Description: Evaluation of string-length function that uses both numbers and letters as part of argument:)
-
-fn:string-length("12345abcd") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-5.xq
deleted file mode 100644
index fe630f03..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-5.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-5 :)
-(: Description: Evaluation of string-length function that uses only upper case letters as part of argument:)
-
-fn:string-length("ABCD") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-6.xq
deleted file mode 100644
index d3ce7280..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-6.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-6 :)
-(: Description: Evaluation of string-length function that uses only lower case letters as part of argument:)
-
-fn:string-length("abcde") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-7.xq
deleted file mode 100644
index 259ab8d9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-7.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-7 :)
-(: Description: Evaluation of string-length function that uses both upper and lower case letters as part of argument:)
-
-fn:string-length("ABCDEabcde") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-8.xq
deleted file mode 100644
index 4b533788..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-8.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-8 :)
-(: Description: Evaluation of string-length function that uses the empty string as part of argument:)
-
-fn:string-length("") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-9.xq
deleted file mode 100644
index 249fe692..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length-9.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-string-length-9 :)
-(: Description: Evaluation of string-length function that uses the "string" as part of argument:)
-
-fn:string-length(fn:string("AbcDH")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-1.xq
deleted file mode 100644
index 78ec3a39..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: string-length1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-length" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:string-length(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-2.xq
deleted file mode 100644
index 905cc6c7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: string-length1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-length" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:string-length(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-3.xq
deleted file mode 100644
index 7d794f3b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/StringLengthFunc/fn-string-length1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: string-length1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "string-length" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:string-length(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-1.xq
deleted file mode 100644
index 450d6b8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-1.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-1 :)
-(: Description: Evaluation of substring function as per example 1 (for this function) :)
-(: from the F&O specs. :)
-
-fn:substring("motor car", 6) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-10.xq
deleted file mode 100644
index 80736e59..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-10.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-10 :)
-(: Description: Evaluation of substring function as per example 10 (for this function) :)
-(: from the F&O specs. :)
-
-fn:substring("12345", -42, 1 div 0E0) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-11.xq
deleted file mode 100644
index 58a07d45..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-11.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-11 :)
-(: Description: Evaluation of substring function as per example 11 (for this function) :)
-(: from the F&O specs. Use "fn:count" to avoid empty file. :)
-
-fn:count(fn:substring("12345", -1 div 0E0, 1 div 0E0)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-12.xq
deleted file mode 100644
index 163e9d04..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-12.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-12 :)
-(: Description: Evaluation of substring function, where the source string is the empty string :)
-(: Use "fn:count" to avoid empty file. :)
-
-fn:count(fn:substring("",0)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-13.xq
deleted file mode 100644
index 8ccd310c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-substring-13 :)
-(: Description: Evaluation of substring function, as an argument to an "fn:boolean" function" :)
-
-fn:boolean(fn:substring("ABC",1)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-14.xq
deleted file mode 100644
index 0c3cdaa8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-substring-14 :)
-(: Description: Evaluation of substring function, as an argument to an "fn:not" function" :)
-
-fn:not(fn:substring("ABC",1)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-15.xq
deleted file mode 100644
index 0e539584..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-substring-15 :)
-(: Description: Evaluation of substring function, as an argument to another "fn:substring" function" :)
-
-fn:substring(fn:substring("ABCDE",1),1) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-16.xq
deleted file mode 100644
index 533ae0f9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-16.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-substring-16 :)
-(: Description: Evaluation of substring function, where the source string is the string "substring".:)
-
-fn:substring("substring",1) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-17.xq
deleted file mode 100644
index c5713b86..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-substring-17 :)
-(: Description: Evaluation of substring function as an argument to a concat function.:)
-
-fn:concat(fn:substring("ABC",1),"DEF") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-18.xq
deleted file mode 100644
index a13cdb01..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-18.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-substring-18:)
-(: Description: Evaluation of substring function as an argument to a contains function.:)
-
-fn:contains(fn:substring("ABCDEF",1),"DEF") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-19.xq
deleted file mode 100644
index a8f8d47e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-19.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-substring-19:)
-(: Description: Evaluation of substring function using the special chracter "!@#$%^&*()".:)
-
-fn:substring("!@#$%^*()",1) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-2.xq
deleted file mode 100644
index 27e4cc66..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-2.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-2 :)
-(: Description: Evaluation of substring function as per example 2 (for this function) :)
-(: from the F&O specs. :)
-
-fn:substring("metadata", 4, 3) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-20.xq
deleted file mode 100644
index 2307bfab..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-20.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-substring-20:)
-(: Description: Evaluation of substring function, where the start location uses a "double" constructor.:)
-
-fn:substring("ABCD",xs:double(1)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-21.xq
deleted file mode 100644
index 2ef43ee7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-21.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-substring-21:)
-(: Description: Evaluation of substring function, where the starting locatin is an addition expression. :)
-
-fn:substring("ABCDE",1+1) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-3.xq
deleted file mode 100644
index 15627156..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-3.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-3 :)
-(: Description: Evaluation of substring function as per example 3 (for this function) :)
-(: from the F&O specs. :)
-
-fn:substring("12345", 1.5, 2.6) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-4.xq
deleted file mode 100644
index 2a5ef2c7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-4.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-4 :)
-(: Description: Evaluation of substring function as per example 4 (for this function) :)
-(: from the F&O specs. :)
-
-fn:substring("12345", 0, 3) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-5.xq
deleted file mode 100644
index 00b578cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-5.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-5 :)
-(: Description: Evaluation of substring function as per example 5 (for this function) :)
-(: from the F&O specs. Use "fn:count" to avoid empty file. :)
-
-fn:count(fn:substring("12345", 5, -3)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-6.xq
deleted file mode 100644
index 4ee4e321..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-6.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-6 :)
-(: Description: Evaluation of substring function as per example 6 (for this function) :)
-(: from the F&O specs. :)
-
-fn:substring("12345", -3, 5) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-7.xq
deleted file mode 100644
index 2666d0f1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-7.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-7 :)
-(: Description: Evaluation of substring function as per example 7 (for this function) :)
-(: from the F&O specs. Use "fn:count" to avoid empty file. :)
-
-fn:count(fn:substring("12345", 0 div 0E0, 3)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-8.xq
deleted file mode 100644
index c5cb6d53..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-8.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-8 :)
-(: Description: Evaluation of substring function as per example 8 (for this function) :)
-(: from the F&O specs. Use "fn:count" to avoid empty file. :)
-
-fn:count(fn:substring("12345", 1, 0 div 0E0)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-9.xq
deleted file mode 100644
index fb430d39..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/SubstringFunc/fn-substring-9.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-substring-9 :)
-(: Description: Evaluation of substring function as per example 9 (for this function) :)
-(: from the F&O specs. Use "fn:count" to avoid empty file. :)
-
-fn:count(fn:substring((), 1, 3)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-1.xq
deleted file mode 100644
index d2b14aa6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-1.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-1 :)
-(: Description: Simple test of translate function as per example one for this function from the F andO specs.:)
-
-fn:translate("bar","abc","ABC") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-10.xq
deleted file mode 100644
index 675193fc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-10.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-10 :)
-(: Description: Evaluation of translate function, where all three arguments are an invocation to "fn:string".:)
-
-fn:translate(fn:string("ABC"), fn:string("ABC"), fn:string("ABC")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-11.xq
deleted file mode 100644
index 0e6443e5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-11.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-11 :)
-(: Description: Evaluation of translate function as an argument to the "fn:string" function.:)
-
-fn:string(fn:translate("ABC", "ABC", "ABC")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-12.xq
deleted file mode 100644
index 0b0c39ff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-12.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-12 :)
-(: Description: Evaluation of translate function as an argument to the "fn:string-length" function.:)
-
-fn:string-length(fn:translate("ABC","ABC","ABC")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-13.xq
deleted file mode 100644
index 673b72f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-13 :)
-(: Description: Evaluation of translate function as an argument to the "xs:decimal" constructor function.:)
-
-xs:decimal(fn:translate("123","123","123")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-14.xq
deleted file mode 100644
index 60092b4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-14 :)
-(: Description: Evaluation of translate function as an argument to the "xs:integer" constructor function.:)
-
-xs:integer(fn:translate("123","123","123")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-15.xq
deleted file mode 100644
index 9cdc05d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-15 :)
-(: Description: Evaluation of translate function as an argument to the "xs:float" constructor function.:)
-
-xs:float(fn:translate("123","123","123")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-16.xq
deleted file mode 100644
index 26074823..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-16.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-16 :)
-(: Description: Evaluation of translate function as an argument to the "xs:double" constructor function.:)
-
-xs:double(fn:translate("123","123","123")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-2.xq
deleted file mode 100644
index e3a560e5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-2.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-2 :)
-(: Description: Simple test of translate function as per example two for this function from the F andO specs.:)
-
-fn:translate("--aaa--","abc-","ABC") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-3.xq
deleted file mode 100644
index 85d2b013..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-3.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-3 :)
-(: Description: Simple test of translate function as per example three for this function from the F andO specs.:)
-
-fn:translate("abcdabc", "abc", "AB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-4.xq
deleted file mode 100644
index 6333f932..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-4.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-4 :)
-(: Description: Evaluation of translate function. Translate lower case letters to upper case letters.:)
-
-fn:translate("acdefghijklmnopqrstuvwxyz", "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-5.xq
deleted file mode 100644
index 1b4c9ec6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-5.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-5 :)
-(: Description: Evaluation of translate function. Translate upper case letters to lower case letters.:)
-
-fn:translate("ABCDEFGHIJKLMNOPQRSTUVWXYZ","ABCDEFGHIJKLMNOPQRSTUVWXYZ","abcdefghijklmnopqrstuvwxyz") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-6.xq
deleted file mode 100644
index 7762cbac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-6.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-translate-6 :)
-(: Description: Evaluation of translate function, where all three arguments are the zero length string.:)
-(: Use fn;count to avoid empty file. :)
-
-fn:count(fn:translate("","","")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-7.xq
deleted file mode 100644
index ac06a025..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-7.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-7 :)
-(: Description: Evaluation of translate function, where the first and third arguments are the same (letters).:)
-
-fn:translate("ABC", "ABC", "ABC") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-8.xq
deleted file mode 100644
index 36c45407..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-8.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-8 :)
-(: Description: Evaluation of translate function, where all arguments are the same (numbers).:)
-
-fn:translate("123", "123", "123") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-9.xq
deleted file mode 100644
index 86e11be0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate-9.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-translate-9 :)
-(: Description: Evaluation of translate function, there is a mixture of numbers and letters.:)
-
-fn:translate("123ABC", "123ABC", "123ABC") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-1.xq
deleted file mode 100644
index d71d5532..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-translate3args-1:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T16:19:28-04:00:)
-(:Purpose:Test simple translate expression:)
-(:*******************************************************:)
-
-translate('---abcABCxyz---','-abcABCxyz','1ABCabcXYZ') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-2.xq
deleted file mode 100644
index 3f76e540..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-translate3args-2:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T16:21:13-04:00:)
-(:Purpose:Test translate on space, tab, and newline:)
-(:*******************************************************:)
-
-translate('newline&#xA;tab&#9;space ','&#xA;&#9; ','123') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-3.xq
deleted file mode 100644
index 6d3092c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-translate3args-3:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T16:35:24-04:00:)
-(:Purpose:Test translate with zero-length string argument:)
-(:*******************************************************:)
-
-translate('','-','x') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-4.xq
deleted file mode 100644
index 3ec7cb31..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-translate3args-4:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T16:36:53-04:00:)
-(:Purpose:Test translate with an empty sequence argument:)
-(:*******************************************************:)
-
-translate((),'-','x') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-5.xq
deleted file mode 100644
index e4c97f57..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-translate3args-5:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T16:41:03-04:00:)
-(:Purpose:Test translate with invalid type in 1st argument:)
-(:*******************************************************:)
-
-translate(1,'-','x') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-6.xq
deleted file mode 100644
index 5f654242..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-translate3args-6:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T16:45:42-04:00:)
-(:Purpose:Test translate with invalid type in 2nd argument:)
-(:*******************************************************:)
-
-translate('abc',1,'x') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-7.xq
deleted file mode 100644
index 049c158c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-translate3args-7:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T16:47:33-04:00:)
-(:Purpose:Test translate with invalid type in 3rd argument:)
-(:*******************************************************:)
-
-translate('abc','x',1) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-8.xq
deleted file mode 100644
index e2876c4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/TranslateFunc/fn-translate3args-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(:Test:fn-translate3args-8:)
-(:Written By:Joanne Tong:)
-(:Date:2005-09-23T16:48:23-04:00:)
-(:Purpose:Test translate with incorrect arity:)
-(:*******************************************************:)
-
-translate('abc') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-1.xq
deleted file mode 100644
index 97ac3fd2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-1.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-upper-case-1 :)
-(: Description: Evaluation of upper-case function as per example 1 (for this function) :)
-(: from the F&O specs. :)
-
-fn:upper-case("ABc!D") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-10.xq
deleted file mode 100644
index 771dea8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-10.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-10 :)
-(: Description: Evaluation of upper-case function with argument set to "*****":)
-
-fn:upper-case("*****") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-11.xq
deleted file mode 100644
index 184bf8f2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-11.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-11 :)
-(: Description: Evaluation of upper-case function with argument set to another upper case function:)
-
-fn:upper-case(upper-case("zzzzz")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-12.xq
deleted file mode 100644
index 46bde2ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-12.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-12 :)
-(: Description: Evaluation of upper-case function as an argument to the "fn:boolean" function:)
-
-fn:boolean(fn:upper-case("abcde")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-13.xq
deleted file mode 100644
index 98dc423d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-13 :)
-(: Description: Evaluation of upper-case function as an argument to the "fn:concat" function:)
-
-fn:concat(fn:upper-case("abcde"), fn:upper-case("fghi")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-14.xq
deleted file mode 100644
index ed238ac1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-14 :)
-(: Description: Evaluation of upper-case function as an argument to the "fn:not" function:)
-
-fn:not(fn:upper-case("abcde")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-15.xq
deleted file mode 100644
index ce3388d1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-15 :)
-(: Description: Evaluation of upper-case function with argument set to "%$#@!":)
-
-fn:upper-case("%$#@!") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-16.xq
deleted file mode 100644
index 762dfdb0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-16.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-16 :)
-(: Description: Evaluation of upper-case function with argument set to "upper-case":)
-
-fn:upper-case("upper-case") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-17.xq
deleted file mode 100644
index 342650b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-17 :)
-(: Description: Evaluation of upper-case function as part of a boolean expression:)
-
-fn:upper-case("abc") and fn:upper-case("abc") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-2.xq
deleted file mode 100644
index ae727ccf..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-2.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-upper-case-2 :)
-(: Description: Evaluation of upper-case function using the empty sequence :)
-(: Uses the count function to avoid empty file. :)
-
-fn:count(fn:upper-case(())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-3.xq
deleted file mode 100644
index e28d0f78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-3.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-3 :)
-(: Description: Evaluation of upper-case function that uses only numbers as part of argument:)
-(: Use of count function to avoid empty file. :)
-fn:upper-case("12345") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-4.xq
deleted file mode 100644
index a5466542..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-4.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-4 :)
-(: Description: Evaluation of upper-case function that uses both numbers and letters as part of argument:)
-
-fn:upper-case("12345abcd") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-5.xq
deleted file mode 100644
index 51fb6770..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-5.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-5 :)
-(: Description: Evaluation of upper-case function that uses only upper case letters as part of argument:)
-
-fn:upper-case("ABCD") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-6.xq
deleted file mode 100644
index 0eaf6c2e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-6.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-6 :)
-(: Description: Evaluation of upper-case function that uses only lower case letters as part of argument:)
-
-fn:upper-case("abcde") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-7.xq
deleted file mode 100644
index 65b5704d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-7.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-7 :)
-(: Description: Evaluation of upper-case function that uses both upper and lower case letters as part of argument:)
-
-fn:upper-case("ABCDEabcde") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-8.xq
deleted file mode 100644
index 2e404de7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-8.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-upper-case-8 :)
-(: Description: Evaluation of upper-case function that uses the empty string as part of argument:)
-(: Uses "fn:count" to avoid the empty file :)
-
-fn:count(fn:upper-case("")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-9.xq
deleted file mode 100644
index 3f3e4fa7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case-9.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-upper-case-9 :)
-(: Description: Evaluation of upper-case function that uses the "lower-case" as part of argument:)
-
-fn:upper-case(lower-case("AbcDH")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-1.xq
deleted file mode 100644
index 36a8551a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: upper-case1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "upper-case" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:upper-case(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-2.xq
deleted file mode 100644
index ca6cdbf8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: upper-case1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "upper-case" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:upper-case(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-3.xq
deleted file mode 100644
index 5d329097..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/GeneralStringFunc/UpperCaseFunc/fn-upper-case1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: upper-case1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "upper-case" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:upper-case(xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch01.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch01.xq
deleted file mode 100644
index 951e9c7c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch01.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch01 :)
-(: Description: Simple call of matches() with "i" flag :)
-
-
-matches('abc', 'ABC', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch02.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch02.xq
deleted file mode 100644
index b89efe55..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch02.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch02 :)
-(: Description: Call of matches() with "i" flag and a character range :)
-
-
-matches('abZ', '[A-Z]*', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch03.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch03.xq
deleted file mode 100644
index 615ca5c1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch03.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch03 :)
-(: Description: Call of matches() with "i" flag and a character range :)
-
-
-matches('abZ', '[a-z]*', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch04.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch04.xq
deleted file mode 100644
index 35031bd5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch04.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch04 :)
-(: Description: Call of matches() with "i" flag and Kelvin sign :)
-
-
-matches('&#x212A;', '[A-Z]', 'i') (: Kelvin sign :) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch05.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch05.xq
deleted file mode 100644
index dede42bd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch05.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch05 :)
-(: Description: Call of matches() with "i" flag and Kelvin sign :)
-
-
-matches('&#x212A;', '[a-z]', 'i') (: Kelvin sign :) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch06.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch06.xq
deleted file mode 100644
index 9f09fcb7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch06.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch06 :)
-(: Description: Call of matches() with "i" flag and Kelvin sign :)
-
-
-matches('&#x212A;', 'K', 'i') (: Kelvin sign :) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch07.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch07.xq
deleted file mode 100644
index 7f92e92b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch07.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch07 :)
-(: Description: Call of matches() with "i" flag and Kelvin sign :)
-
-
-matches('&#x212A;', 'k', 'i') (: Kelvin sign :) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch08.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch08.xq
deleted file mode 100644
index 69e582ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch08.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch08 :)
-(: Description: Call of matches() with "i" flag and range subtraction :)
-
-
-matches('x', '[A-Z-[OI]]', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch09.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch09.xq
deleted file mode 100644
index 7b811a39..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch09.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch09 :)
-(: Description: Call of matches() with "i" flag and range subtraction :)
-
-
-matches('X', '[A-Z-[OI]]', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch10.xq
deleted file mode 100644
index d7a78d46..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch10.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch10 :)
-(: Description: Call of matches() with "i" flag and range subtraction :)
-
-
-matches('O', '[A-Z-[OI]]', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch11.xq
deleted file mode 100644
index 5a4001ef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch11.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch11 :)
-(: Description: Call of matches() with "i" flag and range subtraction :)
-
-
-matches('i', '[A-Z-[OI]]', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch12.xq
deleted file mode 100644
index b480364e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch12.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch12 :)
-(: Description: Call of matches() with "i" flag and negation :)
-
-
-matches('Q', '[^Q]', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch13.xq
deleted file mode 100644
index ba092f8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch13.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch13 :)
-(: Description: Call of matches() with "i" flag and negation :)
-
-
-matches('q', '[^Q]', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch14.xq
deleted file mode 100644
index 6e85a482..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch14.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch14 :)
-(: Description: Call of matches() with "i" flag and upper-case category :)
-
-
-matches('m', '\p{Lu}', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch15.xq
deleted file mode 100644
index 28d2f01f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/caselessmatch15.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: caselessmatch15 :)
-(: Description: Call of matches() with "i" flag and upper-case category :)
-
-
-matches('m', '\P{Lu}', 'i') \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-1.xq
deleted file mode 100644
index 7263ecdd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-1.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-matches-1 :)
-(: Description: Evaluation of matches function as per example 1 (for this function) :)
-
-
-fn:matches("abracadabra", "bra") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-10.xq
deleted file mode 100644
index 862af124..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-10.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-10 :)
-(: Description: Evaluation of matches function with pattern set to "\{" for an input string that contains "}". :)
-
-fn:matches("abracadabra{abracadabra", "\{") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-11.xq
deleted file mode 100644
index e0b30589..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-11.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-11 :)
-(: Description: Evaluation of matches function with pattern set to "\}" for an input string that contains "}". :)
-
-fn:matches("abracadabra}abracadabra", "\}") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-12.xq
deleted file mode 100644
index 1db64427..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-12.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-12 :)
-(: Description: Evaluation of matches function with pattern set to "\(" for an input string that contains "(". :)
-
-fn:matches("abracadabra(abracadabra", "\(") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-13.xq
deleted file mode 100644
index 06380efb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-13 :)
-(: Description: Evaluation of matches function with pattern set to "\)" for an input string that contains ")". :)
-
-fn:matches("abracadabra)abracadabra", "\)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-14.xq
deleted file mode 100644
index 22cae04a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-14 :)
-(: Description: Evaluation of matches function with pattern set to "\[" for an input string that contains "[". :)
-
-fn:matches("abracadabra[abracadabra", "\[") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-15.xq
deleted file mode 100644
index ed109ad7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-15 :)
-(: Description: Evaluation of matches function with pattern set to "\]" for an input string that contains "]". :)
-
-fn:matches("abracadabra]abracadabra", "\]") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-16.xq
deleted file mode 100644
index 0af80f97..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-16.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-16 :)
-(: Description: Evaluation of matches function with pattern set to "\-" for an input string that contains "-". :)
-
-fn:matches("abracadabra-abracadabra", "\-") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-17.xq
deleted file mode 100644
index 7ebad1c4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-17 :)
-(: Description: Evaluation of matches function with pattern set to "\." for an input string that contains ".". :)
-
-fn:matches("abracadabra.abracadabra", "\.") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-18.xq
deleted file mode 100644
index c9a7c444..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-18.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-18 :)
-(: Description: Evaluation of matches function with pattern set to "\|" for an input string that contains "|". :)
-
-fn:matches("abracadabra|abracadabra", "\|") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-19.xq
deleted file mode 100644
index 0b7d9291..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-19.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-19 :)
-(: Description: Evaluation of matches function with pattern set to "\\" for an input string that contains "\". :)
-
-fn:matches("abracadabra\abracadabra", "\\") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-2.xq
deleted file mode 100644
index a9f698ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-2.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-matches-2 :)
-(: Description: Evaluation of matches function as per example 2 (for this function). Pattern set to "^a.*a$". :)
-
-
-fn:matches("abracadabra", "^a.*a$") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-20.xq
deleted file mode 100644
index 2787c1ee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-20.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-20 :)
-(: Description: Evaluation of matches function with pattern set to "\t" for an input string that contains the tab character. :)
-
-fn:matches("abracadabra abracadabra", "\t") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-21.xq
deleted file mode 100644
index 1421a00c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-21.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-matches-21 :)
-(: Description: Evaluation of matches function with pattern set to "\n" for an input string that contains the newline character. :)
-
-fn:matches("abracadabra
-abracadabra", "\n") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-22.xq
deleted file mode 100644
index 29bbaa1f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-22.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-22 :)
-(: Description: Evaluation of matches function with pattern set to "aa{1}" (exact quantity) for an input string that contains the "aa" string. :)
-
-fn:matches("abracadabraabracadabra", "aa{1}") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-23.xq
deleted file mode 100644
index f90cedce..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-23.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-23 :)
-(: Description: Evaluation of matches function with pattern set to "aa{1,}" (min quantity) for an input string that contains the "aa" string twice. :)
-
-fn:matches("abracadabraabracadabraabracadabra", "aa{1,}") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-24.xq
deleted file mode 100644
index 56190180..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-24.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-24 :)
-(: Description: Evaluation of matches function with pattern set to "aa{1,2}" (range quantity) for an input string that contains the "aa" string twice. :)
-
-fn:matches("abracadabraabracadabraabracadabra", "aa{1,2}") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-25.xq
deleted file mode 100644
index 10090ce7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-25.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-matches-25 :)
-(: Description: Evaluation of matches function with invalid regular expression :)
-
-
-fn:matches("abracadabra", "**%%") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-26.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-26.xq
deleted file mode 100644
index 9f9f6358..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-26.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: fn-matches-26 :)
-(: Description: Check for the correct behavior of ^ and $ in multi-line mode :)
-(: This test case was motivated by the resolution of Bug Report ???? :)
-
-
-fn:matches("abcd&#x0a;defg&#x0a;", "^$", "m") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-27.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-27.xq
deleted file mode 100644
index 60ad080f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-27.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: fn-matches-27 :)
-(: Description: Check for the correct behavior of ^ and $ in multi-line mode :)
-(: This test case was motivated by the resolution of Bug Report ???? :)
-
-
-fn:matches("&#x0a;abcd&#x0a;defg&#x0a;", "^$", "m") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-28.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-28.xq
deleted file mode 100644
index ecbb26b6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-28.xq
+++ /dev/null
@@ -1,6 +0,0 @@
-(: Name: fn-matches-27 :)
-(: Description: Check for the correct behavior of ^ and $ in multi-line mode :)
-(: This test case was motivated by the resolution of Bug Report ???? :)
-
-
-fn:matches("abcd&#x0a;&#x0a;defg&#x0a;", "^$", "m") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-3.xq
deleted file mode 100644
index 12529073..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-3.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-3 :)
-(: Description: Evaluation of matches function as per example 3 (for this function). Pattern set to "^bra" :)
-
-fn:matches("abracadabra", "^bra") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-4.xq
deleted file mode 100644
index 360d8757..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-4.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-4 :)
-(: Description: Test that calling the function with flags set to the empty string is the same as ommiting the flags.:)
-
-fn:concat(fn:matches("abracadabra", "^bra"),fn:matches("abracadabra", "^bra", "")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-5.xq
deleted file mode 100644
index 0450a092..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-5.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-matches-5 :)
-(: Description: Evaluate the fn:mathes function with the input string set to the empty sequence.:)
-(: fn:count used to avoid empty file. :)
-
-fn:count(fn:matches("()", "^bra")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-6.xq
deleted file mode 100644
index 7bd34689..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-6.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-6 :)
-(: Description: Evaluation of matches function with pattern set to "\^". :)
-
-fn:matches("abracadabra^abracadabra", "\^") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-7.xq
deleted file mode 100644
index 8bca0eb5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-7.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-7 :)
-(: Description: Evaluation of matches function with pattern set to "\?" for an input string that contains "?". :)
-
-fn:matches("abracadabra?abracadabra", "\?") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-8.xq
deleted file mode 100644
index 2098a90a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-8.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-8 :)
-(: Description: Evaluation of matches function with pattern set to "\*" for an input string that contains "*". :)
-
-fn:matches("abracadabra*abracadabra", "\*") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-9.xq
deleted file mode 100644
index 974eac0f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches-9.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-matches-9 :)
-(: Description: Evaluation of matches function with pattern set to "\+" for an input string that contains "+". :)
-
-fn:matches("abracadabra+abracadabra", "\+") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-1.xq
deleted file mode 100644
index fc920a0f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: matches2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "matches" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(lower bound) :)
-(:$pattern = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:matches("This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-2.xq
deleted file mode 100644
index 2d410a56..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: matches2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "matches" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(mid range) :)
-(:$pattern = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:matches("This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-3.xq
deleted file mode 100644
index 1d5a5d85..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: matches2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "matches" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(upper bound) :)
-(:$pattern = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:matches("This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-4.xq
deleted file mode 100644
index 115bf28c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: matches2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "matches" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(lower bound) :)
-(:$pattern = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:matches("This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-5.xq
deleted file mode 100644
index 8097ccc4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matches2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: matches2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "matches" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(lower bound) :)
-(:$pattern = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:matches("This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matchesErr-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matchesErr-1.xq
deleted file mode 100644
index a3eba037..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/MatchesFunc/fn-matchesErr-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-matchesErr-1:)
-(: Description: Invalid flag for third argument of fn:matches.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:matches("abracadabra", "bra", "p") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-1.xq
deleted file mode 100644
index ced2ba86..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replace-1:)
-(: Description: Evaluation of replace function with replacement = "*" as an example 1 for this function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-replace("abracadabra", "bra", "*") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-10.xq
deleted file mode 100644
index 861e6c33..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replace-10:)
-(: Description: Two alternatives within the pattern both match at the same position in the $input. The first one is chosen. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:replace("abcd", "(ab)|(a)", "[1=$1][2=$2]") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-11.xq
deleted file mode 100644
index 529cb65c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-replace-11:)
-(: Description: Evaluation of fn:replace function with input set to empty sequence. :)
-(: Uses the fn:count function to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:replace((), "bra", "*")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-12.xq
deleted file mode 100644
index 8a781d34..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: fn-replace-12:)
-(: Description: Evaluate that calling function with flags ommited is same as flags being the zero length string. :)
-
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-replace("abracadabra", "bra", "*", "") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-13.xq
deleted file mode 100644
index db75048b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-13 :)
-(: Description: Evaluation of replace function with pattern set to "\?" for an input string that contains "?". :)
-
-fn:replace("abracadabra?abracadabra", "\?", "with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-14.xq
deleted file mode 100644
index b58ffdfd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-14 :)
-(: Description: Evaluation of replace function with pattern set to "\*" for an input string that contains "*". :)
-
-fn:replace("abracadabra*abracadabra", "\*", "with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-15.xq
deleted file mode 100644
index 20453b3f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-15 :)
-(: Description: Evaluation of replace function with pattern set to "\+" for an input string that contains "+". :)
-
-fn:replace("abracadabra+abracadabra", "\+", "with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-16.xq
deleted file mode 100644
index 2b931be6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-16.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-16 :)
-(: Description: Evaluation of replace function with pattern set to "\{" for an input string that contains "}". :)
-
-fn:replace("abracadabra{abracadabra", "\{", "with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-17.xq
deleted file mode 100644
index 3a72fa0d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-17 :)
-(: Description: Evaluation of replace function with pattern set to "\}" for an input string that contains "}". :)
-
-fn:replace("abracadabra}abracadabra", "\}", "with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-18.xq
deleted file mode 100644
index 706dac9f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-18.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-18 :)
-(: Description: Evaluation of replace function with pattern set to "\(" for an input string that contains "(". :)
-
-fn:replace("abracadabra(abracadabra", "\(", "with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-19.xq
deleted file mode 100644
index f1ab005c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-19.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-19 :)
-(: Description: Evaluation of replace function with pattern set to "\)" for an input string that contains ")". :)
-
-fn:replace("abracadabra)abracadabra", "\)", "with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-2.xq
deleted file mode 100644
index 87aaee38..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-2.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(: Name: fn-replace-2:)
-(: Description: Evaluation of replace function with pattern = "a.*a" and replacement = "*" as an example 2 for this function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-replace("abracadabra", "a.*a", "*") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-20.xq
deleted file mode 100644
index 4fe2b2be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-20.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-20 :)
-(: Description: Evaluation of replace function with pattern set to "\[" for an input string that contains "[". :)
-
-fn:replace("abracadabra[abracadabra", "\[", "with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-21.xq
deleted file mode 100644
index 555e3d50..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-21.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-21 :)
-(: Description: Evaluation of replace function with pattern set to "\]" for an input string that contains "]". :)
-
-fn:replace("abracadabra]abracadabra", "\]", "with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-22.xq
deleted file mode 100644
index 67e1f96c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-22.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-22 :)
-(: Description: Evaluation of replace function with pattern set to "\-" for an input string that contains "-". :)
-
-fn:replace("abracadabra-abracadabra", "\-","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-23.xq
deleted file mode 100644
index be9a91a5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-23.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-23 :)
-(: Description: Evaluation of replace function with pattern set to "\." for an input string that contains ".". :)
-
-fn:replace("abracadabra.abracadabra", "\.","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-24.xq
deleted file mode 100644
index 3987d0b7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-24.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-24 :)
-(: Description: Evaluation of replace function with pattern set to "\|" for an input string that contains "|". :)
-
-fn:replace("abracadabra|abracadabra", "\|","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-25.xq
deleted file mode 100644
index 92e16ed2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-25.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-25 :)
-(: Description: Evaluation of replace function with pattern set to "\\" for an input string that contains "\". :)
-
-fn:replace("abracadabra\abracadabra", "\\","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-26.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-26.xq
deleted file mode 100644
index dee0d901..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-26.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-26 :)
-(: Description: Evaluation of replace function with pattern set to "\t" for an input string that contains the tab character. :)
-
-fn:replace("abracadabra abracadabra", "\t","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-27.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-27.xq
deleted file mode 100644
index 3c3fb75e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-27.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-replace-27 :)
-(: Description: Evaluation of replace function with pattern set to "\n" for an input string that contains the newline character. :)
-
-fn:replace("abracadabra
-abracadabra", "\n","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-28.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-28.xq
deleted file mode 100644
index 1f2c9048..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-28.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-28 :)
-(: Description: Evaluation of replace function with pattern set to "aa{1}" (exact quantity) for an input string that contains the "aa" string. :)
-
-fn:replace("abracadabraabracadabra", "aa{1}","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-29.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-29.xq
deleted file mode 100644
index 70cdc293..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-29.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-29 :)
-(: Description: Evaluation of replace function with pattern set to "aa{1,}" (min quantity) for an input string that contains the "aa" string twice. :)
-
-fn:replace("abracadabraabracadabraabracadabra", "aa{1,}","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-3.xq
deleted file mode 100644
index 4ae62707..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-3.xq
+++ /dev/null
@@ -1,7 +0,0 @@
-(: Name: fn-replace-2:)
-(: Description: Evaluation of replace function with pattern = "a.*?a" and replacement = "*" as an example 3 for this function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-replace("abracadabra", "a.*?a", "*") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-30.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-30.xq
deleted file mode 100644
index d7529aca..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-30.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-30 :)
-(: Description: Evaluation of replace function with pattern set to "aa{1,2}" (range quantity) for an input string that contains the "aa" string twice. :)
-
-fn:replace("abracadabraabracadabraabracadabra", "aa{1,2}","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-31.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-31.xq
deleted file mode 100644
index a58d4063..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-31.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-31 :)
-(: Description: Evaluation of replace function with pattern set to "\^". :)
-
-fn:replace("abracadabra^abracadabra", "\^","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-32.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-32.xq
deleted file mode 100644
index e6f1ea2f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-32.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-32 :)
-(: Description: Evaluation of replace function with pattern set to "^a". :)
-
-fn:replace("abracadabra", "^a","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-33.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-33.xq
deleted file mode 100644
index 5bac7477..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-33.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-replace-33 :)
-(: Description: Evaluation of replace function with pattern that does not match the input string. :)
-
-fn:replace("abracadabra", "ww","with") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-4.xq
deleted file mode 100644
index c41090d4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replace-4:)
-(: Description: Evaluation of replace function with pattern = "a" and replacement = "" as an example 4 for this function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-replace("abracadabra", "a", "") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-5.xq
deleted file mode 100644
index 1db7b261..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replace-5:)
-(: Description: Evaluation of replace function with pattern = "a(.)" and replacement = "a$1$1" as an example 5 for this function.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-replace("abracadabra", "a(.)", "a$1$1") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-6.xq
deleted file mode 100644
index a013c0c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replace-6:)
-(: Description: Evaluation of replace function with pattern = ".*?" and replacement = "$1" as an example 6 for this function. Should raise an error:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-replace("abracadabra", ".*?", "$1") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-7.xq
deleted file mode 100644
index 29baad87..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replace-7:)
-(: Description: Evaluation of replace function with pattern = "A+" and replacement = "b" as an example 7 for this function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-replace("AAAA", "A+", "b") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-8.xq
deleted file mode 100644
index 1f1cc7ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replace-8:)
-(: Description: Evaluation of replace function with pattern = "A+?" and replacement = "b" as an example 8 for this function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-replace("AAAA", "A+?", "b") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-9.xq
deleted file mode 100644
index f5825cc3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replace-9:)
-(: Description: Evaluation of replace function with pattern = "^(.*?)d(.*)" and replacement = "$1c$2" as an example 9 for this function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-replace("darted", "^(.*?)d(.*)$", "$1c$2") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-1.xq
deleted file mode 100644
index 8167d848..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-1.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: replace3args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "replace" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(lower bound) :)
-(:$pattern = xs:string(lower bound) :)
-(:$replacement = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:replace("This is a characte","This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-2.xq
deleted file mode 100644
index d0c27bc5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-2.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: replace3args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "replace" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(mid range) :)
-(:$pattern = xs:string(lower bound) :)
-(:$replacement = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:replace("This is a characte","This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-3.xq
deleted file mode 100644
index 4fb53d1e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-3.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: replace3args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "replace" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(upper bound) :)
-(:$pattern = xs:string(lower bound) :)
-(:$replacement = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:replace("This is a characte","This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-4.xq
deleted file mode 100644
index 592aa50f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-4.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: replace3args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "replace" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(lower bound) :)
-(:$pattern = xs:string(mid range) :)
-(:$replacement = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:replace("This is a characte","This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-5.xq
deleted file mode 100644
index 1325cb11..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-5.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: replace3args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "replace" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(lower bound) :)
-(:$pattern = xs:string(upper bound) :)
-(:$replacement = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:replace("This is a characte","This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-6.xq
deleted file mode 100644
index 9b14bd95..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-6.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: replace3args-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "replace" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(lower bound) :)
-(:$pattern = xs:string(lower bound) :)
-(:$replacement = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:replace("This is a characte","This is a characte","This is a characte") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-7.xq
deleted file mode 100644
index e506ee1f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replace3args-7.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: replace3args-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "replace" function :)
-(: with the arguments set as follows: :)
-(:$input = xs:string(lower bound) :)
-(:$pattern = xs:string(lower bound) :)
-(:$replacement = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:replace(xs:string("This is a characte"),xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-1.xq
deleted file mode 100644
index 199f16f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replaceErr-1:)
-(: Description: Invalid flag for fn:matches fourth argument.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:replace("abracadabra", "bra", "*", "p") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-2.xq
deleted file mode 100644
index ab6db0e1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replaceErr-2:)
-(: Description:the value of $replacement contains a "\" character that is not part of a "\\" pair, unless it is immediately followed by a "$" character.:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:replace("abracadabra", "bra", "\") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-3.xq
deleted file mode 100644
index dd51437a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/ReplaceFunc/fn-replaceErr-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-replaceErr-3:)
-(: Description: The value of $replacement contains a "$" character that is not immediately followed by a digit 0-9 and not immediately preceded by a "\".:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:replace("abracadabra", "bra", "$y") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-1.xq
deleted file mode 100644
index 32ee3d38..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-TokenizeFunc-1 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: fn:tokenize with a positional predicate. :)
-(:*******************************************************:)
-fn:tokenize(("abracadabra", current-time())[1] treat as xs:string,
- "(ab)|(a)")[last()] eq "" \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-2.xq
deleted file mode 100644
index 41e5318a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-TokenizeFunc-2 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: fn:tokenize with a positional predicate. :)
-(:*******************************************************:)
-empty(fn:tokenize(("abracadabra", current-time())[1] treat as xs:string,
- "(ab)|(a)")[last() + 1]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-3.xq
deleted file mode 100644
index d6e45850..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-TokenizeFunc-3 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: fn:tokenize with a positional predicate(#2). :)
-(:*******************************************************:)
-fn:tokenize(("abracadabra", current-time())[1] treat as xs:string,
- "(ab)|(a)")[last() - 1] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-4.xq
deleted file mode 100644
index 2209e93a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/K2-TokenizeFunc-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:*******************************************************:)
-(: Test: K2-TokenizeFunc-4 :)
-(: Written by: Frans Englich :)
-(: Date: 2006-08-04T17:13:26Z :)
-(: Purpose: fn:tokenize with a positional predicate(#3). :)
-(:*******************************************************:)
-fn:tokenize(("abracadabra", current-time())[1] treat as xs:string,
- "(ab)|(a)")[last() - 3] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-1.xq
deleted file mode 100644
index 1632a76d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-1.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-tokenize-1 :)
-(: Description: Evaluation of tokenize function where pattern matches the zero lentgh string. :)
-(: Given on example 3 for this function in the Func and Ops specs. :)
-
-fn:tokenize("abba", ".?") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-10.xq
deleted file mode 100644
index f7045401..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-10.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-10 :)
-(: Description: Evaluation of tokenize function with pattern that does not match the input string. :)
-
-fn:tokenize("abracadabra", "ww") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-11.xq
deleted file mode 100644
index 608938f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-11.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-11 :)
-(: Description: Evaluation of tokenize function with pattern set to "^a". :)
-
-fn:tokenize("abracadabra", "^a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-12.xq
deleted file mode 100644
index 06cafea5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-12.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-12 :)
-(: Description: Evaluation of tokenize function with pattern set to "\^". :)
-
-fn:tokenize("abracadabra^abracadabra", "\^") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-13.xq
deleted file mode 100644
index b48b43fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-13 :)
-(: Description: Evaluation of tokenize function with pattern set to "\?" for an input string that contains "?". :)
-
-fn:tokenize("abracadabra?abracadabra", "\?") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-14.xq
deleted file mode 100644
index 82e74d8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-14 :)
-(: Description: Evaluation of tokenize function with pattern set to "\*" for an input string that contains "*". :)
-
-fn:tokenize("abracadabra*abracadabra", "\*") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-15.xq
deleted file mode 100644
index f0a7a638..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-15 :)
-(: Description: Evaluation of tokenize function with pattern set to "\+" for an input string that contains "+". :)
-
-fn:tokenize("abracadabra+abracadabra", "\+") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-16.xq
deleted file mode 100644
index 48da5ffd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-16.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-16 :)
-(: Description: Evaluation of tokenize function with pattern set to "\{" for an input string that contains "}". :)
-
-fn:tokenize("abracadabra{abracadabra", "\{") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-17.xq
deleted file mode 100644
index 051f895c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-17 :)
-(: Description: Evaluation of tokenize function with pattern set to "\}" for an input string that contains "}". :)
-
-fn:tokenize("abracadabra}abracadabra", "\}") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-18.xq
deleted file mode 100644
index 8c7a8021..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-18.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-18 :)
-(: Description: Evaluation of tokenize function with pattern set to "\(" for an input string that contains "(". :)
-
-fn:tokenize("abracadabra(abracadabra", "\(") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-19.xq
deleted file mode 100644
index 142bafdc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-19.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-19 :)
-(: Description: Evaluation of tokenize function with pattern set to "\)" for an input string that contains ")". :)
-
-fn:tokenize("abracadabra)abracadabra", "\)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-2.xq
deleted file mode 100644
index ca77f54a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-2.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-2 :)
-(: Description: Evaluation of tokenize function whith an invalid value for the flags :)
-
-fn:tokenize("The cat sat on the mat", "\s+", "t") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-20.xq
deleted file mode 100644
index eaf32986..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-20.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-20 :)
-(: Description: Evaluation of tokenize function with pattern set to "\[" for an input string that contains "[". :)
-
-fn:tokenize("abracadabra[abracadabra", "\[") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-21.xq
deleted file mode 100644
index b7894648..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-21.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-21 :)
-(: Description: Evaluation of tokenize function with pattern set to "\]" for an input string that contains "]". :)
-
-fn:tokenize("abracadabra]abracadabra", "\]") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-22.xq
deleted file mode 100644
index 7d92d4a5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-22.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-22 :)
-(: Description: Evaluation of tokenize function with pattern set to "\-" for an input string that contains "-". :)
-
-fn:tokenize("abracadabra-abracadabra", "\-") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-23.xq
deleted file mode 100644
index 0cd2869d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-23.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-23 :)
-(: Description: Evaluation of tokenize function with pattern set to "\." for an input string that contains ".". :)
-
-fn:tokenize("abracadabra.abracadabra", "\.") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-24.xq
deleted file mode 100644
index 4b364331..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-24.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-24 :)
-(: Description: Evaluation of tokenize function with pattern set to "\|" for an input string that contains "|". :)
-
-fn:tokenize("abracadabra|abracadabra", "\|") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-25.xq
deleted file mode 100644
index d0d7fc8f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-25.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-25 :)
-(: Description: Evaluation of tokenize function with pattern set to "\\" for an input string that contains "\". :)
-
-fn:tokenize("abracadabra\abracadabra", "\\") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-26.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-26.xq
deleted file mode 100644
index 4103f8bc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-26.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-26 :)
-(: Description: Evaluation of tokenize function with pattern set to "\t" for an input string that contains the tab character. :)
-
-fn:tokenize("abracadabra abracadabra", "\t") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-27.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-27.xq
deleted file mode 100644
index 6ff92728..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-27.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-tokenize-27 :)
-(: Description: Evaluation of tokenize function with pattern set to "\n" for an input string that contains the newline character. :)
-
-fn:tokenize("abracadabra
-abracadabra", "\n") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-28.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-28.xq
deleted file mode 100644
index 6036c370..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-28.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-28 :)
-(: Description: Evaluation of tokenize function with pattern set to "aa{1}" (exact quantity) for an input string that contains the "aa" string. :)
-
-fn:tokenize("abracadabraabracadabra", "aa{1}") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-29.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-29.xq
deleted file mode 100644
index 3c1c5a29..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-29.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-29 :)
-(: Description: Evaluation of tokenize function with pattern set to "aa{1,}" (min quantity) for an input string that contains the "aa" string twice. :)
-
-fn:tokenize("abracadabraabracadabraabracadabra", "aa{1,}") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-3.xq
deleted file mode 100644
index 60d5048c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-3.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-tokenize-3 :)
-(: Description: Evaluation of tokenize function with pattern set to "\s+" as per example :)
-(: 1 for this functions from the Func and Ops specs. :)
-
-fn:tokenize("The cat sat on the mat", "\s+") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-30.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-30.xq
deleted file mode 100644
index 78e56bfc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-30.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-30 :)
-(: Description: Evaluation of tokenize function with pattern set to "aa{1,2}" (range quantity) for an input string that contains the "aa" string twice. :)
-
-fn:tokenize("abracadabraabracadabraabracadabra", "aa{1,2}") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-4.xq
deleted file mode 100644
index 2a76abd7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-4.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-tokenize-4 :)
-(: Description: Evaluation of tokenize function with pattern set to "\s*" as per example :)
-(: 2 for this functions from the Func and Ops specs. :)
-
-fn:tokenize("1, 15, 24, 50", ",\s*") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-5.xq
deleted file mode 100644
index 7d15f903..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-5.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-tokenize-5 :)
-(: Description: Evaluation of tokenize function with pattern set to "\s*<br>\s*" and flag set to "i" as :)
-(: per example 4 for this functions from the Func and Ops specs. :)
-
-fn:tokenize("Some unparsed <br> HTML <BR> text", "\s*<br>\s*", "i") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-6.xq
deleted file mode 100644
index 2b019b65..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-6.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-6 :)
-(: Description: Evaluation of tokenize function with pattern with flags arguments set to empty string. :)
-
-fn:tokenize("Some unparsed <br> HTML <BR> text", "\s*<br>\s*", "") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-7.xq
deleted file mode 100644
index f1b59e48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-7.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-tokenize-7 :)
-(: Description: Evaluation of tokenize function with $input set to empty sequence :)
-(: Uses fn:count to avoid empty file. :)
-
-fn:count(fn:tokenize((), "\s+")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-8.xq
deleted file mode 100644
index 1fc5af0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-8.xq
+++ /dev/null
@@ -1,5 +0,0 @@
-(: Name: fn-tokenize-8 :)
-(: Description: Evaluation of tokenize function with $input set to zero length string. :)
-(: Uses fn:count to avoid empty file. :)
-
-fn:count(fn:tokenize("", "\s+")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-9.xq
deleted file mode 100644
index 27683b45..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/MatchStringFunc/TokenizeFunc/fn-tokenize-9.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-tokenize-9 :)
-(: Description: Evaluation of tokenize function with two patterms matching the input string. :)
-
-fn:tokenize("abracadabra", "(ab)|(a)") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-1.xq
deleted file mode 100644
index f9ae9639..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:contains("","") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-10.xq
deleted file mode 100644
index 3c428801..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-10.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-10 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = " " :)
-(:$arg2 = " AAAAABBBBB" :)
-(:*******************************************************:)
-
-fn:contains(" ","AAAAABBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-11.xq
deleted file mode 100644
index 223b391a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-11 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(:using it as a argument of a fn:not - returns false :)
-(:*******************************************************:)
-
-fn:not(fn:contains("A","A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-12.xq
deleted file mode 100644
index 38ced38c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-12 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:contains("A","B")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-13.xq
deleted file mode 100644
index 66a81d1e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-13.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-13 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string("A") :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:contains(xs:string("A"),"A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-14.xq
deleted file mode 100644
index 02c5e5c9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-14.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-14 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = xs:string("A") :)
-(:*******************************************************:)
-
-fn:contains("A",xs:string("A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-15.xq
deleted file mode 100644
index 75792fe6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-15.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-15 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = "a" :)
-(:*******************************************************:)
-
-fn:contains("A","a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-16.xq
deleted file mode 100644
index 73571ca2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-16.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-16 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "a" :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:contains("a","A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-2.xq
deleted file mode 100644
index c2818419..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:contains("","A Character String") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-3.xq
deleted file mode 100644
index 5fe2c34b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:contains("A Character String","") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-4.xq
deleted file mode 100644
index cfc01367..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:contains((),"") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-5.xq
deleted file mode 100644
index 29ba1a8d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:contains("",()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-6.xq
deleted file mode 100644
index 511c8b29..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-6.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A Character String" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:contains("A Character String",()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-7.xq
deleted file mode 100644
index de23adf6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-7.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:contains((),"A Character String") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-8.xq
deleted file mode 100644
index b8d7f661..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-8.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-8 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBBCCCCC" :)
-(:$arg2 = "BBBBB" :)
-(:*******************************************************:)
-
-fn:contains("AAAAABBBBBCCCCC","BBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-9.xq
deleted file mode 100644
index baf9471b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains-9.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-contains-9 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBB" :)
-(:$arg2 = " " :)
-(:*******************************************************:)
-
-fn:contains("AAAAABBBBB"," ") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-1.xq
deleted file mode 100644
index fa94e4a5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: contains2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:contains(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-2.xq
deleted file mode 100644
index a2f17d0d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: contains2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(mid range) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:contains(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-3.xq
deleted file mode 100644
index 36515976..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: contains2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(upper bound) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:contains(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-4.xq
deleted file mode 100644
index c03cfab5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: contains2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:contains(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-5.xq
deleted file mode 100644
index ccff12c8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/ContainsFunc/fn-contains2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: contains2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "contains" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:contains(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-1.xq
deleted file mode 100644
index e405c411..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:ends-with("","") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-10.xq
deleted file mode 100644
index f6e28e13..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-10.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-10 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = " " :)
-(:$arg2 = " AAAAABBBBB" :)
-(:*******************************************************:)
-
-fn:ends-with(" ","AAAAABBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-11.xq
deleted file mode 100644
index 18c3dec0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-11 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(:using it as a argument of a fn:not - returns false :)
-(:*******************************************************:)
-
-fn:not(fn:ends-with("A","A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-12.xq
deleted file mode 100644
index e0925059..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-12 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:ends-with("A","B")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-13.xq
deleted file mode 100644
index a3fbb638..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-13.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-13 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string("A") :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:ends-with(xs:string("A"),"A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-14.xq
deleted file mode 100644
index 3e251753..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-14.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-14 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = xs:string("A") :)
-(:*******************************************************:)
-
-fn:ends-with("A",xs:string("A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-15.xq
deleted file mode 100644
index 90b080ad..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-15.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-15 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = "a" :)
-(:*******************************************************:)
-
-fn:ends-with("A","a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-16.xq
deleted file mode 100644
index 12e6c258..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-16.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-16 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "a" :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:ends-with("a","A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-2.xq
deleted file mode 100644
index 612b78ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:ends-with("","A Character String") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-3.xq
deleted file mode 100644
index 39f9f561..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:ends-with("A Character String","") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-4.xq
deleted file mode 100644
index edee4fdd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:ends-with((),"") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-5.xq
deleted file mode 100644
index 0d2c87c8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:ends-with("",()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-6.xq
deleted file mode 100644
index f3584f52..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-6.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A Character String" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:ends-with("A Character String",()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-7.xq
deleted file mode 100644
index b0a295f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-7.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:ends-with((),"A Character String") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-8.xq
deleted file mode 100644
index 7981a997..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-8.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-8 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBBCCCCC" :)
-(:$arg2 = "BBBBB" :)
-(:*******************************************************:)
-
-fn:ends-with("AAAAABBBBBCCCCC","BBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-9.xq
deleted file mode 100644
index 42ebf358..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with-9.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-ends-with-9 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBB" :)
-(:$arg2 = " " :)
-(:*******************************************************:)
-
-fn:ends-with("AAAAABBBBB"," ") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-1.xq
deleted file mode 100644
index 7cef1404..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: ends-with2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:ends-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-2.xq
deleted file mode 100644
index 19b76748..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: ends-with2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(mid range) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:ends-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-3.xq
deleted file mode 100644
index 59b75b7e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: ends-with2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(upper bound) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:ends-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-4.xq
deleted file mode 100644
index 1b11f0b7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: ends-with2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:ends-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-5.xq
deleted file mode 100644
index 3bdfef48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/EndsWithFunc/fn-ends-with2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: ends-with2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "ends-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:ends-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-1.xq
deleted file mode 100644
index e1a20359..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:starts-with("","") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-10.xq
deleted file mode 100644
index 75d3ab45..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-10.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-10 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = " " :)
-(:$arg2 = " AAAAABBBBB" :)
-(:*******************************************************:)
-
-fn:starts-with(" ","AAAAABBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-11.xq
deleted file mode 100644
index bed3dda9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-11 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(:using it as a argument of a fn:not - returns false :)
-(:*******************************************************:)
-
-fn:not(fn:starts-with("A","A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-12.xq
deleted file mode 100644
index 3de49caa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-12 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:starts-with("A","B")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-13.xq
deleted file mode 100644
index 0418de78..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-13.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-13 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string("A") :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:starts-with(xs:string("A"),"A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-14.xq
deleted file mode 100644
index 41dd576c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-14.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-14 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = xs:string("A") :)
-(:*******************************************************:)
-
-fn:starts-with("A",xs:string("A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-15.xq
deleted file mode 100644
index c06acfdc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-15.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-15 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = "a" :)
-(:*******************************************************:)
-
-fn:starts-with("A","a") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-16.xq
deleted file mode 100644
index f6f7f64c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-16.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-16 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "a" :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:starts-with("a","A") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-2.xq
deleted file mode 100644
index f1bb0d2a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:starts-with("","A Character String") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-3.xq
deleted file mode 100644
index ddcc18a8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:starts-with("A Character String","") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-4.xq
deleted file mode 100644
index 2faa5dfc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:starts-with((),"") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-5.xq
deleted file mode 100644
index 9044ef3d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:starts-with("",()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-6.xq
deleted file mode 100644
index c74a4d7e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-6.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A Character String" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:starts-with("A Character String",()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-7.xq
deleted file mode 100644
index 1a00d986..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-7.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:starts-with((),"A Character String") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-8.xq
deleted file mode 100644
index a98eccd2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-8.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-8 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBBCCCCC" :)
-(:$arg2 = "BBBBB" :)
-(:*******************************************************:)
-
-fn:starts-with("AAAAABBBBBCCCCC","BBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-9.xq
deleted file mode 100644
index 5be81837..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with-9.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-starts-with-9 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBB" :)
-(:$arg2 = " " :)
-(:*******************************************************:)
-
-fn:starts-with("AAAAABBBBB"," ") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-1.xq
deleted file mode 100644
index 062f675b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: starts-with2args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:starts-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-2.xq
deleted file mode 100644
index a0aaf570..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: starts-with2args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(mid range) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:starts-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-3.xq
deleted file mode 100644
index b6e1df5b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: starts-with2args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(upper bound) :)
-(:$arg2 = xs:string(lower bound) :)
-(:*******************************************************:)
-
-fn:starts-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-4.xq
deleted file mode 100644
index 82aa792c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: starts-with2args-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(mid range) :)
-(:*******************************************************:)
-
-fn:starts-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-5.xq
deleted file mode 100644
index 6edacea0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/StartsWithFunc/fn-starts-with2args-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: starts-with2args-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:46 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "starts-with" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string(lower bound) :)
-(:$arg2 = xs:string(upper bound) :)
-(:*******************************************************:)
-
-fn:starts-with(xs:string("This is a characte"),xs:string("This is a characte")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-1.xq
deleted file mode 100644
index 88083252..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after("","")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-10.xq
deleted file mode 100644
index a2f8e024..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-10.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-10 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = " " :)
-(:$arg2 = " AAAAABBBBB" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after(" ","AAAAABBBBB")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-11.xq
deleted file mode 100644
index 921c9c7d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-11 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:substring-after("A","A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-12.xq
deleted file mode 100644
index 05b78ff8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-12 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:substring-after("A","B")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-13.xq
deleted file mode 100644
index a61dcf4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-13.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-13 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string("A") :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after(xs:string("A"),"A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-14.xq
deleted file mode 100644
index d8fa90da..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-14.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-14 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = xs:string("A") :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after("A",xs:string("A"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-15.xq
deleted file mode 100644
index 20aa31ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-15.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-15 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = "a" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after("A","a")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-16.xq
deleted file mode 100644
index c4125f94..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-16.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-16 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "a" :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after("a","A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-17.xq
deleted file mode 100644
index 41c44802..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-17.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-17 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "substring-after" :)
-(:$arg2 = "substring-after" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after("substring-after","substring-after")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-18.xq
deleted file mode 100644
index 7cc8f539..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-18.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-18 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "substring-aftersubstring-after" :)
-(:$arg2 = "substring-after" :)
-(:*******************************************************:)
-
-fn:substring-after("substring-aftersubstring-after","substring-after") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-19.xq
deleted file mode 100644
index cee6634f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-19.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-19 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "****" :)
-(:$arg2 = "***" :)
-(:*******************************************************:)
-
-fn:substring-after("****","***") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-2.xq
deleted file mode 100644
index cd65d330..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after("","A Character String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-20.xq
deleted file mode 100644
index 8748a993..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-20.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-20 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "12345" :)
-(:$arg2 = "1234" :)
-(:*******************************************************:)
-
-fn:substring-after("12345","1234") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-21.xq
deleted file mode 100644
index 21cc1f1f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-21.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-21 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "substring-after :)
-(:$arg2 = "refta-gnirtsbus :)
-(:("substring-after" backwards) :)
-(:*******************************************************:)
-
-count(fn:substring-after("substring-after","refta-gnirtsbus")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-3.xq
deleted file mode 100644
index 8f6ed3ac..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after("A Character String","")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-4.xq
deleted file mode 100644
index c428a377..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after((),"")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-5.xq
deleted file mode 100644
index 835ea664..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after("",())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-6.xq
deleted file mode 100644
index 25553f80..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-6.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A Character String" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after("A Character String",())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-7.xq
deleted file mode 100644
index e43ee27f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-7.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-after((),"A Character String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-8.xq
deleted file mode 100644
index 06d5179c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-8.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-8 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBBCCCCC" :)
-(:$arg2 = "BBBBB" :)
-(:*******************************************************:)
-
-fn:substring-after("AAAAABBBBBCCCCC","BBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-9.xq
deleted file mode 100644
index f7c71b4b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringAfterFunc/fn-substring-after-9.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-after-9 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-after" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBB" :)
-(:$arg2 = " " :)
-(:*******************************************************:)
-
-count(fn:substring-after("AAAAABBBBB"," ")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-1.xq
deleted file mode 100644
index 41134d07..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-1.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("","")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-10.xq
deleted file mode 100644
index 5e46c76a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-10.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-10 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = " " :)
-(:$arg2 = " AAAAABBBBB" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before(" ","AAAAABBBBB")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-11.xq
deleted file mode 100644
index 89eb3001..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-11 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:substring-before("A","A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-12.xq
deleted file mode 100644
index 855d2f6a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-12 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(:using it as a argument of a fn:not - returns true :)
-(:*******************************************************:)
-
-fn:not(fn:substring-before("A","B")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-13.xq
deleted file mode 100644
index 6bdce286..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-13.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-13 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = xs:string("A") :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before(xs:string("A"),"A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-14.xq
deleted file mode 100644
index 609214c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-14.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-14 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = xs:string("A") :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("A",xs:string("A"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-15.xq
deleted file mode 100644
index 4c16257f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-15.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-15 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A" :)
-(:$arg2 = "a" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("A","a")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-16.xq
deleted file mode 100644
index e082da3d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-16.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-16 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "a" :)
-(:$arg2 = "A" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("a","A")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-17.xq
deleted file mode 100644
index 7d7db520..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-17.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-17 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "substring-before" :)
-(:$arg2 = "substring-before" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("substring-before","substring-before")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-18.xq
deleted file mode 100644
index 3e5d5bf9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-18.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-18 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "substring-beforesubstring-before" :)
-(:$arg2 = "substring-before" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("substring-beforesubstring-before","substring-before")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-19.xq
deleted file mode 100644
index c60e44f3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-19.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-19 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "****" :)
-(:$arg2 = "***" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("****","***")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-2.xq
deleted file mode 100644
index 52057665..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-2.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("","A Character String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-20.xq
deleted file mode 100644
index f1148e32..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-20.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-20 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "12345" :)
-(:$arg2 = "2345" :)
-(:*******************************************************:)
-
-fn:substring-before("12345","2345") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-21.xq
deleted file mode 100644
index e5276ba8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-21.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-21 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Mon Jun 1, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "substring-before :)
-(:$arg2 = "erofeb-gnirtsbus :)
-(:("substring-before" backwards) :)
-(:*******************************************************:)
-
-count(fn:substring-before("substring-before","erofeb-gnirtsbus")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-3.xq
deleted file mode 100644
index 4628a504..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-3.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("A Character String","")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-4.xq
deleted file mode 100644
index ff1bac49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-4.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before((),"")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-5.xq
deleted file mode 100644
index 095ebc39..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-5.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("",())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-6.xq
deleted file mode 100644
index 37ca760e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-6.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "A Character String" :)
-(:$arg2 = () :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before("A Character String",())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-7.xq
deleted file mode 100644
index 66b1b142..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-7.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = () :)
-(:$arg2 = "A Character String" :)
-(:*******************************************************:)
-
-fn:count(fn:substring-before((),"A Character String")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-8.xq
deleted file mode 100644
index 57462219..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-8.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-8 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBBCCCCC" :)
-(:$arg2 = "BBBBB" :)
-(:*******************************************************:)
-
-fn:substring-before("AAAAABBBBBCCCCC","BBBBB") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-9.xq
deleted file mode 100644
index 6f4a22a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/SubstringStringFunc/SubstringBeforeFunc/fn-substring-before-9.xq
+++ /dev/null
@@ -1,11 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-substring-before-9 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri May 27, 2005 :)
-(:Purpose: Evaluates The "substring-before" function :)
-(: with the arguments set as follows: :)
-(:$arg1 = "AAAAABBBBB" :)
-(:$arg2 = " " :)
-(:*******************************************************:)
-
-count(fn:substring-before("AAAAABBBBB"," ")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates01.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates01.xq
deleted file mode 100644
index 381320b1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates01.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates01 :)
-(: Description: string-length() when non-BMP characters are present :)
-
-string-length("abc&#x1D156;def") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates02.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates02.xq
deleted file mode 100644
index 968ac192..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates02.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates02 :)
-(: Description: substring() when non-BMP characters are present :)
-
-substring("abc&#x1D156;def", 5) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates03.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates03.xq
deleted file mode 100644
index 29ddc7c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates03.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates02 :)
-(: Description: substring() when non-BMP characters are present :)
-
-substring("abc&#x1D156;def", 4) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates04.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates04.xq
deleted file mode 100644
index 1603de45..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates04.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates04 :)
-(: Description: translate() when non-BMP characters are present :)
-
-translate("abc&#x1D156;def", "&#x1D156;", "#") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates05.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates05.xq
deleted file mode 100644
index 314cb01f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates05.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates05 :)
-(: Description: translate() when non-BMP characters are present :)
-
-translate("abc&#x1D156;def", "&#x1D156;de", "#DE") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates06.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates06.xq
deleted file mode 100644
index 4e527221..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates06.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates06 :)
-(: Description: translate() when non-BMP characters are present :)
-
-translate("abc&#x1D156;def", "def", "&#x1D156;EF") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates07.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates07.xq
deleted file mode 100644
index 011d3fa6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates07.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates07 :)
-(: Description: string-to-codepoints() when non-BMP characters are present :)
-
-string-to-codepoints("abc&#x1D156;def") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates08.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates08.xq
deleted file mode 100644
index b58afaea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates08.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates08 :)
-(: Description: codepoints-to-string() when non-BMP characters are present :)
-
-codepoints-to-string((97, 98, 99, 119126, 100, 101, 102)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates09.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates09.xq
deleted file mode 100644
index 89354385..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates09.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates09 :)
-(: Description: substring-before() when non-BMP characters are present :)
-
-substring-before("abc&#x1D156;def", "&#x1D156;") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates10.xq
deleted file mode 100644
index db3fe5fa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates10.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates10 :)
-(: Description: substring-before() when non-BMP characters are present :)
-
-substring-before("abc&#x1D156;def", "f") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates11.xq
deleted file mode 100644
index 0e08ca37..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates11.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates11 :)
-(: Description: substring-after() when non-BMP characters are present :)
-
-substring-after("abc&#x1D156;def", "&#x1D156;") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates12.xq
deleted file mode 100644
index 82067c15..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates12.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates12 :)
-(: Description: matches() when non-BMP characters are present :)
-
-matches("abc&#x1D157;def", "abc[&#x1D156;-&#x1D158;]def") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates13.xq
deleted file mode 100644
index 4fac9ef6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates13.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates13 :)
-(: Description: matches() when non-BMP characters are present :)
-
-matches("abc&#x1D157;def", "abc.def") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates14.xq
deleted file mode 100644
index ea66181b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates14.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates14 :)
-(: Description: replace() when non-BMP characters are present :)
-
-replace("abc&#119130;def", "[&#119120;-&#119135;]", "&#119135;") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates15.xq
deleted file mode 100644
index 4854ffa3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/AllStringFunc/Surrogates/surrogates15.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: surrogates15 :)
-(: Description: replace() when non-BMP characters are present :)
-
-replace("abc&#x1D157;def", "[^a-f]", "###") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-1.xq
deleted file mode 100644
index 86b2ab1d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-1.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-false-1 :)
-(: Description: Simple call to an "fn:false" function. :)
-
-fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-10.xq
deleted file mode 100644
index 934d4b4e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-10.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-10 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "ge" operator. :)
-fn:false() ge fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-11.xq
deleted file mode 100644
index d3b5179f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-11.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-11 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "=" operator. :)
-fn:false() = fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-12.xq
deleted file mode 100644
index 6bf68811..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-12.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-12 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "!=" operator. :)
-fn:false() != fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-13.xq
deleted file mode 100644
index 152f284a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-13.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-13 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "<" operator. :)
-fn:false() < fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-14.xq
deleted file mode 100644
index 8bc310dc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-14.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-14 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "<=" operator. :)
-fn:false() <= fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-15.xq
deleted file mode 100644
index 71eec3fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-15.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-15 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the ">" operator. :)
-fn:false() > fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-16.xq
deleted file mode 100644
index 9acf7ef9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-16.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-16 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the ">=" operator. :)
-fn:false() >= fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-17.xq
deleted file mode 100644
index fdd1d67f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-false-17 :)
-(: Description: Evaluation of an "fn:false" function as an argument to an "xs:boolean" function. :)
-
-xs:boolean(fn:false()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-18.xq
deleted file mode 100644
index 41dac830..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-18.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-false-18 :)
-(: Description: Evaluation of an "fn:false" function as an argument to an "fn:string" function. :)
-
-fn:string(fn:false()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-19.xq
deleted file mode 100644
index 529216f1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-19.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-false-19 :)
-(: Description: Evaluation of an "fn:false" function as arguments to an "fn:concat" function. :)
-
-fn:concat(xs:string(fn:false()),xs:string(fn:false())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-2.xq
deleted file mode 100644
index 93e00094..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-2.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-false-2 :)
-(: Description: Evaliation of "fn:false" function as argument to fn:not function. :)
-
-fn:not(fn:false()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-20.xq
deleted file mode 100644
index d2342934..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-20.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-false-20 :)
-(: Description: Evaluation of an "fn:false" function as arguments to an "fn:contains" function. :)
-
-fn:contains(xs:string(fn:false()),xs:string(fn:false())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-21.xq
deleted file mode 100644
index d5f17031..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-21.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-false-21 :)
-(: Description: Evaluation of an "fn:false" function as an argument to an "fn:string-length" function. :)
-
-fn:string-length(xs:string(fn:false())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-3.xq
deleted file mode 100644
index de42f506..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-3.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-3 :)
-(: Description: Evaluation of a "false" function with a logical expression involving the "and" operator. :)
-fn:false() and fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-4.xq
deleted file mode 100644
index e05f4d13..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-4.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-4 :)
-(: Description: Evaluation of a "fn:false" function with a logical expression involving the "or" operator. :)
-fn:false() or fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-5.xq
deleted file mode 100644
index 2ec91c35..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-5.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-5 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "eq" operator. :)
-fn:false() eq fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-6.xq
deleted file mode 100644
index d4fb68dd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-6.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-6 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "ne" operator. :)
-fn:false() ne fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-7.xq
deleted file mode 100644
index c7a07a08..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-7.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-7 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "lt" operator. :)
-fn:false() lt fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-8.xq
deleted file mode 100644
index e877061f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-8.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-8 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "le" operator. :)
-fn:false() le fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-9.xq
deleted file mode 100644
index f388d1e6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/FalseFunc/fn-false-9.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-false-9 :)
-(: Description: Evaluation of an "fn:false" function with a comparison expression involving the "gt" operator. :)
-fn:false() gt fn:false() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-1.xq
deleted file mode 100644
index e2b528a4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-1.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-not-1 :)
-(: Description: Simple call to an "fn:not" function. :)
-
-fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-10.xq
deleted file mode 100644
index 93b8bea3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-10.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-10 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "ge" operator. :)
-fn:not("true") ge fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-11.xq
deleted file mode 100644
index e54003f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-11.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-11 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "=" operator. :)
-fn:not("true") = fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-12.xq
deleted file mode 100644
index 3b017e49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-12.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-12 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "!=" operator. :)
-fn:not("true") != fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-13.xq
deleted file mode 100644
index 1a0e9363..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-13.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-13 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "<" operator. :)
-fn:not("true") < fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-14.xq
deleted file mode 100644
index 550323b7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-14.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-14 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "<=" operator. :)
-fn:not("true") <= fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-15.xq
deleted file mode 100644
index 991fd18a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-15.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-15 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the ">" operator. :)
-fn:not("true") > fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-16.xq
deleted file mode 100644
index c2886132..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-16.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-16 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the ">=" operator. :)
-fn:not("true") >= fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-17.xq
deleted file mode 100644
index 26f5553f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-not-17 :)
-(: Description: Evaluation of an "fn:not" function as an argument to an "xs:boolean" function. :)
-
-xs:boolean(fn:not("true")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-18.xq
deleted file mode 100644
index 68048483..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-18.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-not-18 :)
-(: Description: Evaluation of an "fn:not" function as an argument to an "fn:string" function. :)
-
-fn:string(fn:not("true")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-19.xq
deleted file mode 100644
index 54a4b042..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-19.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-not-19 :)
-(: Description: Evaluation of an "fn:not" function as arguments to an "fn:concat" function. :)
-
-fn:concat(xs:string(fn:not("true")),xs:string(fn:not("true"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-2.xq
deleted file mode 100644
index 68b9a981..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-2.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-not-2 :)
-(: Description: Evaluation of "fn:not" function as argument to fn:not function. :)
-
-fn:not("fn:not()") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-20.xq
deleted file mode 100644
index c0ae316c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-20.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-not-20 :)
-(: Description: Evaluation of an "fn:not" function as arguments to an "fn:contains" function. :)
-
-fn:contains(xs:string(fn:not("true")),xs:string(fn:not("true"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-21.xq
deleted file mode 100644
index f8ecc195..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-21.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-not-21 :)
-(: Description: Evaluation of an "fn:not" function as an argument to an "fn:string-length" function. :)
-
-fn:string-length(xs:string(fn:not("true"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-3.xq
deleted file mode 100644
index f818a5e4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-3.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-3 :)
-(: Description: Evaluation of a "not" function with a logical expression involving the "and" operator. :)
-fn:not("true") and fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-4.xq
deleted file mode 100644
index 09daed21..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-4.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-4 :)
-(: Description: Evaluation of a "fn:not" function with a logical expression involving the "or" operator. :)
-fn:not("true") or fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-5.xq
deleted file mode 100644
index 65e4211e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-5.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-5 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "eq" operator. :)
-fn:not("true") eq fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-6.xq
deleted file mode 100644
index 39e5facc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-6.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-6 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "ne" operator. :)
-fn:not("true") ne fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-7.xq
deleted file mode 100644
index 1d4699f7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-7.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-7 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "lt" operator. :)
-fn:not("true") lt fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-8.xq
deleted file mode 100644
index 228920e8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-8.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-8 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "le" operator. :)
-fn:not("true") le fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-9.xq
deleted file mode 100644
index 820eb0c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-not-9.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-not-9 :)
-(: Description: Evaluation of an "fn:not" function with a comparison expression involving the "gt" operator. :)
-fn:not("true") gt fn:not("true") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-1.xq
deleted file mode 100644
index 953351fa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notdbl1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:double(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:double("-1.7976931348623157E308")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-2.xq
deleted file mode 100644
index 2212b343..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notdbl1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:double(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:double("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-3.xq
deleted file mode 100644
index 2f6d1a43..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdbl1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notdbl1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:double(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:double("1.7976931348623157E308")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-1.xq
deleted file mode 100644
index 666a3d18..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notdec1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:decimal(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:decimal("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-2.xq
deleted file mode 100644
index 0fadcd29..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notdec1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:decimal(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:decimal("617375191608514839")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-3.xq
deleted file mode 100644
index ae4abe00..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notdec1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notdec1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:decimal(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:decimal("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-1.xq
deleted file mode 100644
index 97f0358b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notflt1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:float(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:float("-3.4028235E38")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-2.xq
deleted file mode 100644
index 6e8f7ff5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notflt1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:float(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:float("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-3.xq
deleted file mode 100644
index a2445dde..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notflt1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notflt1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:float(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:float("3.4028235E38")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-1.xq
deleted file mode 100644
index 7e8004ae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notint1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:int(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:int("-2147483648")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-2.xq
deleted file mode 100644
index 35685789..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notint1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:int(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:int("-1873914410")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-3.xq
deleted file mode 100644
index d291269b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notint1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notint1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:int(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:int("2147483647")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-1.xq
deleted file mode 100644
index 55dda6fc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notintg1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:integer(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:integer("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-2.xq
deleted file mode 100644
index 6596911a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notintg1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:integer(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:integer("830993497117024304")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-3.xq
deleted file mode 100644
index 78b46904..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notintg1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notintg1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:integer(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:integer("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-1.xq
deleted file mode 100644
index 801d29eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notlng1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:long(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:long("-92233720368547758")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-2.xq
deleted file mode 100644
index 1422e055..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notlng1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:long(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:long("-47175562203048468")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-3.xq
deleted file mode 100644
index 591044ea..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notlng1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notlng1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:long(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:long("92233720368547758")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-1.xq
deleted file mode 100644
index fa1d1a87..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notnint1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:negativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:negativeInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-2.xq
deleted file mode 100644
index 6736410c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notnint1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:negativeInteger(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:negativeInteger("-297014075999096793")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-3.xq
deleted file mode 100644
index cd6c40be..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnint1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notnint1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:negativeInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:negativeInteger("-1")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-1.xq
deleted file mode 100644
index 8d3c2d4f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notnni1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonNegativeInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:nonNegativeInteger("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-2.xq
deleted file mode 100644
index e89f50d0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notnni1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonNegativeInteger(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:nonNegativeInteger("303884545991464527")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-3.xq
deleted file mode 100644
index 0da5e0a9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnni1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notnni1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonNegativeInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:nonNegativeInteger("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-1.xq
deleted file mode 100644
index 14c61004..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notnpi1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonPositiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:nonPositiveInteger("-999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-2.xq
deleted file mode 100644
index c6b4b98d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notnpi1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonPositiveInteger(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:nonPositiveInteger("-475688437271870490")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-3.xq
deleted file mode 100644
index 5265fc19..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notnpi1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notnpi1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:nonPositiveInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:nonPositiveInteger("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-1.xq
deleted file mode 100644
index 6e4934d7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notpint1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:positiveInteger(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:positiveInteger("1")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-2.xq
deleted file mode 100644
index 3be87c14..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notpint1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:positiveInteger(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:positiveInteger("52704602390610033")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-3.xq
deleted file mode 100644
index 020d49b3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notpint1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notpint1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:positiveInteger(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:positiveInteger("999999999999999999")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-1.xq
deleted file mode 100644
index 668962c0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notsht1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:short(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:short("-32768")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-2.xq
deleted file mode 100644
index 0d52081d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notsht1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:short(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:short("-5324")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-3.xq
deleted file mode 100644
index 705fe30c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notsht1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notsht1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:short(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:short("32767")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-1.xq
deleted file mode 100644
index c5a88ec3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notulng1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedLong(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:unsignedLong("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-2.xq
deleted file mode 100644
index cf96554e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notulng1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedLong(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:unsignedLong("130747108607674654")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-3.xq
deleted file mode 100644
index f2b0e873..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notulng1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notulng1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedLong(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:unsignedLong("184467440737095516")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-1.xq
deleted file mode 100644
index 7c29b026..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-1.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notusht1args-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedShort(lower bound) :)
-(:*******************************************************:)
-
-fn:not(xs:unsignedShort("0")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-2.xq
deleted file mode 100644
index 879c61a6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-2.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notusht1args-2 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedShort(mid range) :)
-(:*******************************************************:)
-
-fn:not(xs:unsignedShort("44633")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-3.xq
deleted file mode 100644
index bfbb2d1e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/NotFunc/fn-notusht1args-3.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: notusht1args-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: Fri Dec 10 10:15:47 GMT-05:00 2004 :)
-(:Purpose: Evaluates The "not" function :)
-(: with the arguments set as follows: :)
-(:$arg = xs:unsignedShort(upper bound) :)
-(:*******************************************************:)
-
-fn:not(xs:unsignedShort("65535")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-1.xq
deleted file mode 100644
index d4d24cb4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-1.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-true-1 :)
-(: Description: Simple call to an "fn:true" function. :)
-
-fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-10.xq
deleted file mode 100644
index d47477fd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-10.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-10 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "ge" operator. :)
-fn:true() ge fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-11.xq
deleted file mode 100644
index a9b4e95a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-11.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-11 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "=" operator. :)
-fn:true() = fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-12.xq
deleted file mode 100644
index 62e78248..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-12.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-12 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "!=" operator. :)
-fn:true() != fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-13.xq
deleted file mode 100644
index 243eb11a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-13.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-13 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "<" operator. :)
-fn:true() < fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-14.xq
deleted file mode 100644
index cae5bd97..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-14.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-14 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "<=" operator. :)
-fn:true() <= fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-15.xq
deleted file mode 100644
index f01c9546..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-15.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-15 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the ">" operator. :)
-fn:true() > fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-16.xq
deleted file mode 100644
index 4f91b9eb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-16.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-16 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the ">=" operator. :)
-fn:true() >= fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-17.xq
deleted file mode 100644
index 745f7b48..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-17.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-true-17 :)
-(: Description: Evaluation of an "fn:true" function as an argument to an "xs:boolean" function. :)
-
-xs:boolean(fn:true()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-18.xq
deleted file mode 100644
index f6685178..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-18.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-true-18 :)
-(: Description: Evaluation of an "fn:true" function as an argument to an "fn:string" function. :)
-
-fn:string(fn:true()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-19.xq
deleted file mode 100644
index 7cc1a3ae..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-19.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-true-19 :)
-(: Description: Evaluation of an "fn:true" function as arguments to an "fn:concat" function. :)
-
-fn:concat(xs:string(fn:true()),xs:string(fn:true())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-2.xq
deleted file mode 100644
index 2f1c0049..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-2.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-true-2 :)
-(: Description: Evaluation of "fn:true" function as an argument to "fn:not" function. :)
-
-fn:not(fn:true()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-20.xq
deleted file mode 100644
index 8929a036..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-20.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-true-20 :)
-(: Description: Evaluation of an "fn:true" function as arguments to an "fn:contains" function. :)
-
-fn:contains(xs:string(fn:true()),xs:string(fn:true())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-21.xq
deleted file mode 100644
index 3f1761cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-21.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-true-21 :)
-(: Description: Evaluation of an "fn:true" function as an argument to an "fn:string-length" function. :)
-
-fn:string-length(xs:string(fn:true())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-3.xq
deleted file mode 100644
index 59a575c8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-3.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-3 :)
-(: Description: Evaluation of a "true" function with a logical expression involving the "and" operator. :)
-fn:true() and fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-4.xq
deleted file mode 100644
index eead1b12..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-4.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-4 :)
-(: Description: Evaluation of a "fn:true" function with a logical expression involving the "or" operator. :)
-fn:true() or fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-5.xq
deleted file mode 100644
index a3715040..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-5.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-5 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "eq" operator. :)
-fn:true() eq fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-6.xq
deleted file mode 100644
index 6f85c6c5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-6.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-6 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "ne" operator. :)
-fn:true() ne fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-7.xq
deleted file mode 100644
index d1939a3e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-7.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-7 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "lt" operator. :)
-fn:true() lt fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-8.xq
deleted file mode 100644
index 4bb98368..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-8.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-8 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "le" operator. :)
-fn:true() le fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-9.xq
deleted file mode 100644
index bba45c26..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/BooleanFunc/TrueFunc/fn-true-9.xq
+++ /dev/null
@@ -1,3 +0,0 @@
-(: Name: fn-true-9 :)
-(: Description: Evaluation of an "fn:true" function with a comparison expression involving the "gt" operator. :)
-fn:true() gt fn:true() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-1.xq
deleted file mode 100644
index 02523455..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-1 :)
-(: Description: Evaluation of "fn:dateTime" function as per example 1 of the F & O Specs. for this function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31"), xs:time("12:00:00")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-10.xq
deleted file mode 100644
index fe2c0610..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-10.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-10 :)
-(: Description: Evaluation of "fn:dateTime" function together together with the op:dateTime-equal operator(ge). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) ge fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-11.xq
deleted file mode 100644
index 75855d06..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-11.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-11 :)
-(: Description: Evaluation of "fn:dateTime" function together together with the op:dateTime-equal operator(lt). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) lt fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-12.xq
deleted file mode 100644
index 5dfffacd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-12.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-12 :)
-(: Description: Evaluation of "fn:dateTime" function together together with the op:dateTime-equal operator(le). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) le fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-13.xq
deleted file mode 100644
index a0c864b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-13.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-13 :)
-(: Description: Evaluation of "fn:dateTime" function together together with the op:dateTime-equal operator(gt). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) gt fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-14.xq
deleted file mode 100644
index 61e26529..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-14.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-14 :)
-(: Description: Evaluation of "fn:dateTime" function together together with the op:dateTime-equal operator(ge). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) ge fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-15.xq
deleted file mode 100644
index e8cfebc4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-15.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-15 :)
-(: Description: Evaluation of "fn:dateTime" as an argument to the function "year-from-dateTime". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:year-from-dateTime(fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-16.xq
deleted file mode 100644
index 7339e72b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-16.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-16 :)
-(: Description: Evaluation of "fn:dateTime" as an argument to the function "month-from-dateTime". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:month-from-dateTime(fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-17.xq
deleted file mode 100644
index e5c32c51..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-17.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-17 :)
-(: Description: Evaluation of "fn:dateTime" as an argument to the function "day-from-dateTime". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:day-from-dateTime(fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-18.xq
deleted file mode 100644
index 307e5563..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-18.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-18 :)
-(: Description: Evaluation of "fn:dateTime" as an argument to the function "hours-from-dateTime". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:hours-from-dateTime(fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-19.xq
deleted file mode 100644
index 6c246aee..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-19.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-19 :)
-(: Description: Evaluation of "fn:dateTime" as an argument to the function "minutes-from-dateTime". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:minutes-from-dateTime(fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-2.xq
deleted file mode 100644
index 737a19a0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-2 :)
-(: Description: Evaluation of "fn:dateTime" function as per example 2 of the F & O Specs. for this function. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31"), xs:time("24:00:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-20.xq
deleted file mode 100644
index 78d5c8f5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-20.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-20 :)
-(: Description: Evaluation of "fn:dateTime" as an argument to the function "seconds-from-dateTime". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:seconds-from-dateTime(fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-21.xq
deleted file mode 100644
index c0069473..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-21.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-21 :)
-(: Description: Evaluation of "fn:dateTime" as an argument to the function "timezone-from-dateTime". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:timezone-from-dateTime(fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-22.xq
deleted file mode 100644
index fd85a581..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-22.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-22 :)
-(: Description: Evaluation of "fn:dateTime" as an argument to the function "adjust-dateTime-to-timezone". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:adjust-dateTime-to-timezone(fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")),xs:dayTimeDuration("PT10H")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-23.xq
deleted file mode 100644
index 8432796a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-23.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-23 :)
-(: Description: Evaluation of "fn:dateTime" as part of a subtraction operation. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) - fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("22:00:00+10:00")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-24.xq
deleted file mode 100644
index e5881861..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-24.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-24 :)
-(: Description: Evaluation of "fn:dateTime" used together with the "op:add-yearMonthDuration-to-dateTime" operator :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) + xs:yearMonthDuration("P1Y2M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-25.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-25.xq
deleted file mode 100644
index 15d69101..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-25.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-25 :)
-(: Description: Evaluation of "fn:dateTime" used together with the "op:add-dayTimeDuration-to-dateTime" operator :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) + xs:dayTimeDuration("P3DT1H15M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-26.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-26.xq
deleted file mode 100644
index 5f3d83cc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-26.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-26 :)
-(: Description: Evaluation of "fn:dateTime" used together with the "subtract-yearMonthDuration-from-dateTime" operator :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) - xs:yearMonthDuration("P1Y2M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-27.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-27.xq
deleted file mode 100644
index 50b462ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-27.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-27 :)
-(: Description: Evaluation of "fn:dateTime" used together with the "subtract-dayTimeDuration-from-dateTime" operator :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) - xs:dayTimeDuration("P3DT1H15M") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-28.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-28.xq
deleted file mode 100644
index 3cdc8d7f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-28.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-28 :)
-(: Description: Evaluation of "fn:dateTime" where first argument is empty sequence :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:dateTime((), xs:time("23:00:00+10:00"))) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-29.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-29.xq
deleted file mode 100644
index c91c53e1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-29.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-29 :)
-(: Description: Evaluation of "fn:dateTime" where second argument is empty sequence :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:dateTime(xs:date("1999-12-31+10:00"), ())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-3.xq
deleted file mode 100644
index a02bff84..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-3.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-3 :)
-(: Description: Evaluation of "fn:dateTime" function, where only the first argument have a timezone. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31Z"), xs:time("23:00:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-30.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-30.xq
deleted file mode 100644
index a2a8d172..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-30.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-30 :)
-(: Description: Evaluation of "fn:dateTime" where both arguments are equal to the empty sequence :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:count(fn:dateTime((),())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-4.xq
deleted file mode 100644
index 089d41d0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-4.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-4 :)
-(: Description: Evaluation of "fn:dateTime" function, where only the second argument have a timezone. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31"), xs:time("23:00:00Z"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-5.xq
deleted file mode 100644
index f9a59113..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-5.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-5 :)
-(: Description: Evaluation of "fn:dateTime" function, where both arguments have the same timezone (Z). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31Z"), xs:time("23:00:00Z"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-6.xq
deleted file mode 100644
index 10fb3fa4..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-6.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-6 :)
-(: Description: Evaluation of "fn:dateTime" function, where both arguments have the same timezone (+10:00). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-7.xq
deleted file mode 100644
index 0b44769c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-7.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-7 :)
-(: Description: Evaluation of "fn:dateTime" function together together with the op:dateTime-equal operator(eq). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) eq fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-8.xq
deleted file mode 100644
index 597ff9b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-8.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-8 :)
-(: Description: Evaluation of "fn:dateTime" function together together with the op:dateTime-equal operator(ne). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) ne fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-9.xq
deleted file mode 100644
index 6b3ff7b1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/fn-dateTime-9.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: fn-dateTime-9 :)
-(: Description: Evaluation of "fn:dateTime" function together together with the op:dateTime-equal operator(le). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00")) le fn:dateTime(xs:date("1999-12-31+10:00"), xs:time("23:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/forg0008-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/forg0008-1.xq
deleted file mode 100644
index 0278b0ba..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ConstructFunc/DateTimeFunc/forg0008-1.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(: Name: forg0008-1 :)
-(: Description: Evaluation of "fn:dateTime" function, where the two arguments have different timezones. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:dateTime(xs:date("1999-12-31Z"), xs:time("12:00:00+10:00"))
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-1.xq
deleted file mode 100644
index 1718573d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-1.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates a simple call to the fn:current-date" :)
-(: function. Uses a String Value. :)
-(:*******************************************************:)
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:current-date()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-10.xq
deleted file mode 100644
index d6863377..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-10.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-10 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as an :)
-(:argument to the xs:string function. :)
-(:*******************************************************:)
-
-xs:string(fn:current-date())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-11.xq
deleted file mode 100644
index aa89321e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-11 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as an :)
-(:argument to the timezone-from-date function. :)
-(:*******************************************************:)
-
-fn:timezone-from-date(current-date())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-12.xq
deleted file mode 100644
index ec9d1229..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-12 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates string value The "current-date" as :)
-(:part of an equal expression (eq operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-date()) eq fn:string(fn:current-date())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-13.xq
deleted file mode 100644
index 27dc7ca7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-13.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-13 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as part :)
-(:of an equal expression (ne operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-date()) ne fn:string(fn:current-date())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-14.xq
deleted file mode 100644
index e1392024..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-14 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as part :)
-(:of an equal expression (le operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-date()) le fn:string(fn:current-date()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-15.xq
deleted file mode 100644
index eced1d86..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-15.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-15 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as part :)
-(:of an equal expression (ge operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-date()) ge fn:string(fn:current-date())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-16.xq
deleted file mode 100644
index f6e2d755..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-16.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-16 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as part :)
-(:of a boolean expression ("and" operator and fn:true function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-date()) and fn:true()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-17.xq
deleted file mode 100644
index 424ee644..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-17.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-17 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as part :)
-(:of a boolean expression ("and" operator and fn:false function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-date()) and fn:false()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-18.xq
deleted file mode 100644
index defdab36..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-18.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-18 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as part :)
-(:of a boolean expression ("or" operator and fn:true function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-date()) or fn:true()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-19.xq
deleted file mode 100644
index 6b66debd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-19.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-19 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as part :)
-(:of a boolean expression ("or" operator and fn:false function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-date()) or fn:false()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-2.xq
deleted file mode 100644
index 6e90b4a5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-2.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates The "current-date" function :)
-(:as argument to fn:hours-from-date function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:year-from-date(fn:current-date())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-20.xq
deleted file mode 100644
index e5e2063e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-20.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-20 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function (string :)
-(: value)as an argument to the fn:not function. :)
-(:*******************************************************:)
-
-fn:not(fn:string(fn:current-date())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-21.xq
deleted file mode 100644
index feb11df7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-21.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-21 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "fn-current-date" function used :)
-(:as part of a "-" operation and a yearMonthDuration. :)
-(:*******************************************************:)
-
-fn:current-date() - xs:yearMonthDuration("P1Y2M")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-3.xq
deleted file mode 100644
index 6aadec13..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-3.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates The "current-date" function :)
-(:as argument to fn-month-from-date function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:month-from-date(fn:current-date())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-4.xq
deleted file mode 100644
index 361d82c6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-4.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates The "current-date" function used as :)
-(:as argument to "day-from-date" function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:day-from-date(fn:current-date())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-5.xq
deleted file mode 100644
index b2d88a91..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-5.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates The "current-date" function as part :)
-(:of a "-" operation. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:current-date() - fn:current-date()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-6.xq
deleted file mode 100644
index ca5c894b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-6.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "fn-current-date" function used :)
-(:as part of a "+" expression and a dayTimeDuration. :)
-(:*******************************************************:)
-
-fn:current-date() + xs:dayTimeDuration("P3DT1H15M")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-7.xq
deleted file mode 100644
index 38ddab0c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-7.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "fn-current-date" function used :)
-(:as part of a "-" expression and a dayTimeDuration. :)
-(:*******************************************************:)
-
-fn:current-date() - xs:dayTimeDuration("P3DT1H15M")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-8.xq
deleted file mode 100644
index 569f39b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-8.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-8 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function invoked :)
-(:with incorrect arity. :)
-(:*******************************************************:)
-
-fn:current-date("Argument 1")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-9.xq
deleted file mode 100644
index 436852b2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDateFunc/fn-current-date-9.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-date-9 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-date" function as part of:)
-(:of a subtraction expression. Both operands are the :)
-(:equal to "current-time". :)
-(:*******************************************************:)
-
-fn:current-date() - fn:current-date()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-1.xq
deleted file mode 100644
index 842f75e3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-1.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-1 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 1, 2005 :)
-(:Purpose: Evaluates a simple call to the fn:current-dateTime" :)
-(: function. Uses a String Value. :)
-(:*******************************************************:)
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:current-dateTime()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-10.xq
deleted file mode 100644
index dc30c827..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-10.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-10 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as an :)
-(:argument to the xs:string function. :)
-(:*******************************************************:)
-
-xs:string(fn:current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-11.xq
deleted file mode 100644
index 0f2cd133..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-11 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as an :)
-(:argument to the timezone-from-dateTime function. :)
-(:*******************************************************:)
-
-fn:timezone-from-dateTime(current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-12.xq
deleted file mode 100644
index e7648ebd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-12 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates string value The "current-dateTime" as :)
-(:part of an equal expression (eq operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-dateTime()) eq fn:string(fn:current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-13.xq
deleted file mode 100644
index 62cb5162..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-13.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-13 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as part :)
-(:of an equal expression (ne operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-dateTime()) ne fn:string(fn:current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-14.xq
deleted file mode 100644
index 65a24033..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-14 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as part :)
-(:of an equal expression (le operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-dateTime()) le fn:string(fn:current-dateTime()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-15.xq
deleted file mode 100644
index 1c14fae2..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-15.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-15 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as part :)
-(:of an equal expression (ge operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-dateTime()) ge fn:string(fn:current-dateTime()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-16.xq
deleted file mode 100644
index dcfb5222..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-16.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-16 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as part :)
-(:of a boolean expression ("and" operator and fn:true function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-dateTime()) and fn:true()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-17.xq
deleted file mode 100644
index e5d8dca6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-17.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-17 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as part :)
-(:of a boolean expression ("and" operator and fn:false function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-dateTime()) and fn:false()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-18.xq
deleted file mode 100644
index 7c026a0e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-18.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-18 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as part :)
-(:of a boolean expression ("or" operator and fn:true function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-dateTime()) or fn:true()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-19.xq
deleted file mode 100644
index f9f54ff7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-19.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-19 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as part :)
-(:of a boolean expression ("or" operator and fn:false function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-dateTime()) or fn:false()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-2.xq
deleted file mode 100644
index c8ffef0d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-2.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-2 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 1, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function :)
-(:as argument to fn:year-from-dateTime function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:year-from-dateTime(fn:current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-20.xq
deleted file mode 100644
index e3a0c31b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-20.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-20 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function (string :)
-(: value)as an argument to the fn:not function. :)
-(:*******************************************************:)
-
-fn:not(fn:string(fn:current-dateTime())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-21.xq
deleted file mode 100644
index 5cd95d85..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-21.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-21 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "fn-current-dateTime" function used :)
-(:as part of a "-" operation and a yearMonthDuration. :)
-(:*******************************************************:)
-
-fn:current-dateTime() - xs:yearMonthDuration("P1Y2M")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-22.xq
deleted file mode 100644
index ce085f49..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-22.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-22 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 1, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function :)
-(:as argument to fn:hours-from-dateTime function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:hours-from-dateTime(fn:current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-23.xq
deleted file mode 100644
index 4cfb2eaa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-23.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-23 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 1, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function :)
-(:as argument to fn-minutes-from-dateTime function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:minutes-from-dateTime(fn:current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-24.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-24.xq
deleted file mode 100644
index 6f374eb5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-24.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-24 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 1, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function used as :)
-(:as argument to "seconds-from-dateTime" function :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:seconds-from-dateTime(fn:current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-3.xq
deleted file mode 100644
index 9fb2d83a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-3.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-3 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 1, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function :)
-(:as argument to fn-month-from-dateTime function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:month-from-dateTime(fn:current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-4.xq
deleted file mode 100644
index b74d46cd..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-4.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-4 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 1, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function used as :)
-(:as argument to "day-from-dateTime" function :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:day-from-dateTime(fn:current-dateTime())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-5.xq
deleted file mode 100644
index 30ca9833..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-5.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-5 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 1, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as part :)
-(:of a "-" operation. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:current-dateTime() - fn:current-dateTime()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-6.xq
deleted file mode 100644
index f9bffb14..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-6.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-6 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "fn-current-dateTime" function used :)
-(:as part of a "+" expression and a dayTimeDuration. :)
-(:*******************************************************:)
-
-fn:current-dateTime() + xs:dayTimeDuration("P3DT1H15M")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-8.xq
deleted file mode 100644
index 54c99f02..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-8.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-8 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function invoked :)
-(:with incorrect arity. :)
-(:*******************************************************:)
-
-fn:current-dateTime("Argument 1") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-9.xq
deleted file mode 100644
index 25b6e6e8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-dateTime-9.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-9 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "current-dateTime" function as part of:)
-(:of a subtraction expression. Both operands are the :)
-(:equal to "current-dateTime". :)
-(:*******************************************************:)
-
-fn:current-dateTime() - fn:current-dateTime()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-datetime-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-datetime-7.xq
deleted file mode 100644
index dd22ed33..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentDatetimeFunc/fn-current-datetime-7.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-dateTime-7 :)
-(:Written By: Carmelo Montanez :)
-(:dateTime: December 5, 2005 :)
-(:Purpose: Evaluates The "fn-current-dateTime" function used :)
-(:as part of a "-" expression and a dayTimeDuration. :)
-(:*******************************************************:)
-
-fn:current-dateTime() - xs:dayTimeDuration("P3DT1H15M")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-1.xq
deleted file mode 100644
index 9f285767..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-1.xq
+++ /dev/null
@@ -1,12 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-1 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates a simple call to the fn:current-time" :)
-(: function. Uses a String Value. :)
-(:*******************************************************:)
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:current-time()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-10.xq
deleted file mode 100644
index ee6eaa13..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-10.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-10 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as an :)
-(:argument to the xs:string function. :)
-(:*******************************************************:)
-
-xs:string(fn:current-time())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-11.xq
deleted file mode 100644
index 201f5578..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-11 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as an :)
-(:argument to the timezone-from-time function. :)
-(:*******************************************************:)
-
-fn:timezone-from-time(current-time())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-12.xq
deleted file mode 100644
index ad27809f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-12 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates string value The "current-time" as :)
-(:part of a "numeric-equal" expression (eq operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-time()) eq fn:string(fn:current-time())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-13.xq
deleted file mode 100644
index f3663950..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-13.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-13 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as part :)
-(:of an equal expression (ne operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-time()) ne fn:string(fn:current-time())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-14.xq
deleted file mode 100644
index 42b0b181..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-14 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as part :)
-(:of an equal expression (le operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-time()) le fn:string(fn:current-time()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-15.xq
deleted file mode 100644
index 2f35b63d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-15.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-15 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as part :)
-(:of an equal expression (ge operator) :)
-(:*******************************************************:)
-
-fn:string(fn:current-time()) ge fn:string(fn:current-time())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-16.xq
deleted file mode 100644
index 5f32909a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-16.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-16 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as part :)
-(:of a boolean expression ("and" opeartor and fn:true function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-time()) and fn:true()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-17.xq
deleted file mode 100644
index 0ec64c4c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-17.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-17 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as part :)
-(:of a boolean expression ("and" opeartor and fn:false function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-time()) and fn:false()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-18.xq
deleted file mode 100644
index 0160878a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-18.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-18 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as part :)
-(:of a boolean expression ("or" opeartor and fn:true function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-time()) or fn:true()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-19.xq
deleted file mode 100644
index 785986a6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-19.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-19 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as part :)
-(:of a boolean expression ("or" opeartor and fn:false function.:)
-(:*******************************************************:)
-
-fn:string(fn:current-time()) or fn:false()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-2.xq
deleted file mode 100644
index 109d8a25..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-2.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-curren-time :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates The "current-time" function :)
-(:as argument to fn:hours-from-time function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:hours-from-time(fn:current-time())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-20.xq
deleted file mode 100644
index 6e1552ed..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-20.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-20 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function (string :)
-(: value)as an argument to the fn:not function. :)
-(:*******************************************************:)
-
-fn:not(fn:string(fn:current-time())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-3.xq
deleted file mode 100644
index 566a9c6b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-3.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-3 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates The "current-time" function :)
-(:as argument to fn-minutes-from-time-function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:minutes-from-time(fn:current-time())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-4.xq
deleted file mode 100644
index 45add270..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-4.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-4 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates The "current-time" function used as :)
-(:as argument to "seconds-from-time" function. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:seconds-from-time(fn:current-time())
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-5.xq
deleted file mode 100644
index 9b98f2d1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-5.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-5 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 1, 2005 :)
-(:Purpose: Evaluates The "current-time" function as part :)
-(:of a "-" operation. :)
-(:*******************************************************:)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:current-time() - fn:current-time()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-6.xq
deleted file mode 100644
index 60b3da76..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-6.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-6 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "fn-current-time" function used :)
-(:as part of a "+" expression and a dayTimeDuration. :)
-(:*******************************************************:)
-
-fn:current-time() + xs:dayTimeDuration("P3DT1H15M")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-7.xq
deleted file mode 100644
index bb9bb423..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-7.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-7 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "fn-current-time" function used :)
-(:as part of a "-" expression and a dayTimeDuration. :)
-(:*******************************************************:)
-
-fn:current-time() - xs:dayTimeDuration("P3DT1H15M")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-8.xq
deleted file mode 100644
index c9c9263d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-8.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-tiime-8 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function invoked :)
-(:with incorrect arity. :)
-(:*******************************************************:)
-
-fn:current-time("Argument 1")
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-9.xq
deleted file mode 100644
index d6cd6dd8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextCurrentTimeFunc/fn-current-time-9.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:*******************************************************:)
-(:Test: fn-current-time-9 :)
-(:Written By: Carmelo Montanez :)
-(:Date: December 5, 2005 :)
-(:Purpose: Evaluates The "current-time" function as part of:)
-(:of a subtraction expression. Both operands are the :)
-(:equal to "current-time". :)
-(:*******************************************************:)
-
-fn:current-time() - fn:current-time()
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextDefaultCollationFunc/fn-default-collation-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextDefaultCollationFunc/fn-default-collation-1.xq
deleted file mode 100644
index efb949f1..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextDefaultCollationFunc/fn-default-collation-1.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-default-collation-1 :)
-(: Description: Evaluation of an fn:default-collation function with wrong arity.:)
-
-fn:default-collation("An Argument") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextDefaultCollationFunc/fn-default-collation-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextDefaultCollationFunc/fn-default-collation-2.xq
deleted file mode 100644
index 57e2c7d0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextDefaultCollationFunc/fn-default-collation-2.xq
+++ /dev/null
@@ -1,4 +0,0 @@
-(: Name: fn-default-collation-2 :)
-(: Description: Evaluation of an fn:default-collation function that retrieves the default collation.:)
-
-fn:default-collation() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-1.xq
deleted file mode 100644
index 60b45cb0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-1.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-1 :)
-(:Description Evaluation of "fn:implicit-timezone" with :)
-(:incorrect arity. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:implicit-timezone("Argument 1") \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-10.xq
deleted file mode 100644
index 249daaf5..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-10.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-10 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a division operation. Second argument results in NaN :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() div ( 0 div 0E0)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-11.xq
deleted file mode 100644
index d42f4bb6..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-11 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a division operation. Second argument is 0. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() div 0 ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-12.xq
deleted file mode 100644
index 7255ff1f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-12 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a division operation. Second argument is -0. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() div -0 ) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-13.xq
deleted file mode 100644
index 37912aa7..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-13.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(:Test: fn-implicit-timezone-13 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a division operation. Both operands includes the fn:implicit-timezone.:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-(implicit-timezone() + xs:dayTimeDuration('PT1S')) div
-(implicit-timezone() + xs:dayTimeDuration('PT1S')) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-14.xq
deleted file mode 100644
index 9a282904..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-14 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a division operation. Second operand is a call to xs:dayTimeDuration function.:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() div xs:dayTimeDuration("P0DT60M00S")) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-15.xq
deleted file mode 100644
index b2ad60f0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-15.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-15 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of an addition operation. First operand is a call to xs:time function.:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(xs:time("05:00:00") + fn:implicit-timezone()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-16.xq
deleted file mode 100644
index 236c7add..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-16.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-16 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a subtraction operation. First operand is a call to xs:time function.:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(xs:time("05:00:00") - fn:implicit-timezone()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-17.xq
deleted file mode 100644
index 75d130de..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-17.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-17 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a subtraction operation. First operand is a call to xs:date function.:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(xs:date("2000-10-30") - fn:implicit-timezone()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-18.xq
deleted file mode 100644
index f2fdf3b9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-18.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-18 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of an addition operation. First operand is a call to xs:date function.:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(xs:date("2000-10-30") + fn:implicit-timezone()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-19.xq
deleted file mode 100644
index a7a94cfa..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-19.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-19 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a subtraction operation. First operand is a call to xs:dateTime function.:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(xs:dateTime("2000-10-30T11:12:00") - fn:implicit-timezone()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-2.xq
deleted file mode 100644
index 774b4fff..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-2.xq
+++ /dev/null
@@ -1,8 +0,0 @@
-(:Test: fn-implicit-timezone-2 :)
-(:Description: Normal call to "fn:implicit-timezone". :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-20.xq
deleted file mode 100644
index 5adaab0b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-20.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-20 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of an addition operation. First operand is a call to xs:dateTime function.:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(xs:dateTime("2000-10-30T11:12:00") + fn:implicit-timezone()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-21.xq
deleted file mode 100644
index 51108e12..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-21.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-21 :)
-(:Description: Evaluation of "fn:implicit-timezone" as an :)
-(: an argument to the adjust-date-to-timezone function. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:adjust-date-to-timezone(xs:date("2000-10-30"),fn:implicit-timezone())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-22.xq
deleted file mode 100644
index b240ce64..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-22.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-22 :)
-(:Description: Evaluation of "fn:implicit-timezone" as an :)
-(: an argument to the adjust-time-to-timezone function. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:adjust-time-to-timezone(xs:time("10:00:00"),fn:implicit-timezone())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-23.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-23.xq
deleted file mode 100644
index df2c9581..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-23.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-23 :)
-(:Description: Evaluation of "fn:implicit-timezone" as an :)
-(: an argument to the adjust-dateTime-to-timezone function. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:adjust-dateTime-to-timezone(xs:dateTime("2002-03-07T10:00:00"),fn:implicit-timezone())) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-3.xq
deleted file mode 100644
index ce94e64c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-3.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-3 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of an addition operation. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() + fn:implicit-timezone()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-4.xq
deleted file mode 100644
index da7c62fb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-4.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-4 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(:of a subtraction operation. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() - fn:implicit-timezone()) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-5.xq
deleted file mode 100644
index b3ebe22a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-5.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-5 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(:of a multiplication operation. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() * xs:double(2)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-6.xq
deleted file mode 100644
index 07ba0c2b..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-6.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-6 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(:of a multiplication operation. Second argument is NaN:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() * (0 div 0E0)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-7.xq
deleted file mode 100644
index 0447f4a0..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-7.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-7 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a multiplication operation. Second argument is 0:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() * 0) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-8.xq
deleted file mode 100644
index 749d095e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-8.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-8 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a multiplication operation. Second argument is -0:)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() * -0) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-9.xq
deleted file mode 100644
index d970d2f8..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextImplicitTimezoneFunc/fn-implicit-timezone-9.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(:Test: fn-implicit-timezone-9 :)
-(:Description: Evaluation of "fn:implicit-timezone" as part :)
-(: of a division operation. :)
-
-(:insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-fn:string(fn:implicit-timezone() div xs:double(2)) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-1.xq
deleted file mode 100644
index e0e3d8b3..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-1.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: last-1 :)
-(: Description: Evaluation of "fn:last", where context function is an element node and the position is last. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h//employee[last()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-10.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-10.xq
deleted file mode 100644
index b7bed1cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-10.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: last-10 :)
-(: Description: Evaluation of "fn:last" where the last function is used inside the first predicate. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h//employee[last() = 13][@name = "Jane Doe 13"] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-11.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-11.xq
deleted file mode 100644
index 006d4ddc..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-11.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-11 :)
-(: Description: Evaluation of "fn:position" used in conjucntion with the fn:not function :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[12]/overtime)
- return $h/day[not(position() = 1)] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-12.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-12.xq
deleted file mode 100644
index 19c18e69..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-12.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-12 :)
-(: Description: Evaluation of "fn:position" as a predicate to a wildcard (*). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[12]/overtime)
- return $h/*[position() = position()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-13.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-13.xq
deleted file mode 100644
index 27bb0e8a..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-13.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-13 :)
-(: Description: Evaluation of "fn:position" used together with an addition operation. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[position() = (2 + 2)] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-14.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-14.xq
deleted file mode 100644
index 40117917..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-14.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-14 :)
-(: Description: Evaluation of "fn:position" used together with a subtraction operation. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[position() = (5 - 2)] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-15.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-15.xq
deleted file mode 100644
index 4fbbda5c..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-15.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-15 :)
-(: Description: Evaluation of "fn:position" used together with a multiplication operation. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[position() = (3 * 2)] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-16.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-16.xq
deleted file mode 100644
index 6374b8ef..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-16.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-16 :)
-(: Description: Evaluation of "fn:position" used together with a division (div) operation. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[position() = (6 div 2)] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-17.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-17.xq
deleted file mode 100644
index 428f1474..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-17.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-17 :)
-(: Description: Evaluation of "fn:position" used together with a division (idiv) operation. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[position() = (6 idiv 2)] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-18.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-18.xq
deleted file mode 100644
index 69f1c548..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-18.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-18 :)
-(: Description: Evaluation of "fn:position" used together with a logical expression ("and" operator and "true" function). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[12])
- return ($h/overtime[position() and fn:true()]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-19.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-19.xq
deleted file mode 100644
index 31783d06..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-19.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: position-19 :)
-(: Description: Evaluation of "fn:position" used together with a logical expression ("and" operator and "false" function). :)
-(: Use fn:count to avoid empty file. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[12])
- return fn:count($h/overtime[position() and fn:false()]) \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-2.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-2.xq
deleted file mode 100644
index cd2ba86e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-2.xq
+++ /dev/null
@@ -1,13 +0,0 @@
-(: Name: last-2 :)
-(: Description: Evaluation of "fn:last", where the context node is not defined. :)
-
-declare namespace eg = "http://example.org";
-declare function eg:noContextFunction()
- {
- last()
-};
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-eg:noContextFunction() \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-20.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-20.xq
deleted file mode 100644
index d9419166..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-20.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-20 :)
-(: Description: Evaluation of "fn:position" used together with a logical expression ("or" operator and "true" function). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[12])
- return $h/overtime[position() or fn:true()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-21.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-21.xq
deleted file mode 100644
index d83829bb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-21.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-21 :)
-(: Description: Evaluation of "fn:position" used together with a logical expression ("or" operator and "false" function). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[12])
- return $h/overtime[position() or fn:false()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-22.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-22.xq
deleted file mode 100644
index fae428cb..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-22.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-22 :)
-(: Description: Evaluation of "fn:position" used in the middle of a path expression. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[position() = 12]/overtime \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-3.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-3.xq
deleted file mode 100644
index f9793449..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-3.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: last-3 :)
-(: Description: Evaluation of "fn:last", where the first item is selected. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[12])
- return $h/overtime[last() = 1] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-4.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-4.xq
deleted file mode 100644
index 32a68c05..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-4.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: last-4 :)
-(: Description: Evaluation of "fn:last" together with "fn:position". :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[position() = last()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-5.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-5.xq
deleted file mode 100644
index 8e215b38..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-5.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: last-5 :)
-(: Description: Evaluation of "fn:last" together with "fn:position" (format last() = position()). :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[last() = position()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-6.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-6.xq
deleted file mode 100644
index 88718e4d..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-6.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: last-6 :)
-(: Description: Evaluation of "fn:last" together with the "<<" node operator :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[last()] << $h/employee[last()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-7.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-7.xq
deleted file mode 100644
index a34d274f..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-7.xq
+++ /dev/null
@@ -1,10 +0,0 @@
-(: Name: last-7 :)
-(: Description: Evaluation of "fn:last" together with the "is" node operator :)
-(: casted to integer inside the predicate. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[last()] is $h/employee[last()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-8.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-8.xq
deleted file mode 100644
index c616aed9..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-8.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: last-8 :)
-(: Description: Evaluation of "fn:last" where two last functions are used inside the predicate. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works/employee[12])
- return $h/overtime[last() = last()] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-9.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-9.xq
deleted file mode 100644
index 2eb9598e..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextLastFunc/last-9.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: last-9 :)
-(: Description: Evaluation of "fn:last" where the last function is used inside a second predicate. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h//employee[@name="Jane Doe 13"][last() = 1] \ No newline at end of file
diff --git a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-1.xq b/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-1.xq
deleted file mode 100644
index 63dfd626..00000000
--- a/tests/org.eclipse.wst.xml.xpath2.processor.tests/Queries/XQuery/Functions/ContextFunc/ContextPositionFunc/position-1.xq
+++ /dev/null
@@ -1,9 +0,0 @@
-(: Name: position-1 :)
-(: Description: Evaluation of "fn"position", where context function is an element node and position is first. :)
-
-(: insert-start :)
-declare variable $input-context1 external;
-(: insert-end :)
-
-for $h in ($input-context1/works)
- return $h/employee[position() = 1] \ No newline at end of file
diff --git a/