/* * Copyright 2000-2011 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.intellij.lang.xpath; public class XPath2TypeTest extends XPath2HighlightingTestBase { public void testQNameToQName() throws Throwable { doXPathHighlighting(); } public void testQNameToBoolean() throws Throwable { doXPathHighlighting(); } public void testStringToQName() throws Throwable { doXPathHighlighting(); } public void testStringToBoolean() throws Throwable { doXPathHighlighting(); } public void testUriToBoolean() throws Throwable { doXPathHighlighting(); } public void testUriToStringSequence() throws Throwable { doXPathHighlighting(); } public void testNumberToNode() throws Throwable { doXPathHighlighting(); } public void testNodeToNode() throws Throwable { doXPathHighlighting(); } public void testNodeToDouble() throws Throwable { doXPathHighlighting(); } public void testAnyToString() throws Throwable { doXPathHighlighting(); } public void testStringToAny() throws Throwable { doXPathHighlighting(); } public void testIntegerToString() throws Throwable { doXPathHighlighting(); } public void testIntSeqToAnySeq() throws Throwable { doXPathHighlighting(); } public void testIntSeqToStringSeq() throws Throwable { doXPathHighlighting(); } public void testDynamicContext1() throws Throwable { doXPathHighlighting(); } public void testDynamicContext2() throws Throwable { doXPathHighlighting(); } public void testDynamicContext3() throws Throwable { doXPathHighlighting(); } public void testStringFunctionOnPath() throws Throwable { doXPathHighlighting(); } public void testInvalidPath() throws Throwable { doXPathHighlighting(); } public void testToNumericIDEA67335() throws Throwable { doXPathHighlighting(); } public void testBooleanComparisonIDEA67348() throws Throwable { doXPathHighlighting(); } public void testDurationPlusDurationPlusDateIDEA69517() throws Throwable { doXPathHighlighting(); } public void testNumberPlusString() throws Throwable { doXPathHighlighting(); } public void testUnaryExpressionType() throws Throwable { doXPathHighlighting(); } public void testDatePlusDuration() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } public void testDatePlusDate() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } public void testDateMinusDate() throws Throwable { doXPathHighlighting(); } public void testTimeMinusTime() throws Throwable { doXPathHighlighting(); } public void testDateTimeMinusDateTime() throws Throwable { doXPathHighlighting(); } public void testTimeMinusDate() throws Throwable { doXPathHighlighting(); } public void testDateMinusDuration() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } public void testDateMinusDuration2() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } public void testDurationMinusDate() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } public void testNumericDivDuration() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } public void testNumericIDivDuration() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } public void testDurationDivNumeric() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } public void testDurationIDivNumeric() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } public void testNumericMultString() throws Throwable { doXPathHighlighting(); } public void testQuantifiedExprCondition() throws Throwable { doXPathHighlighting(); } public void testRedundantTypeConversion() throws Throwable { TestNamespaceContext.install(myFixture.getTestRootDisposable()); doXPathHighlighting(); } @Override protected String getSubPath() { return "xpath2/highlighting/types"; } }