本文整理汇总了Java中org.intellij.plugins.testUtil.CopyFile类的典型用法代码示例。如果您正苦于以下问题:Java CopyFile类的具体用法?Java CopyFile怎么用?Java CopyFile使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
CopyFile类属于org.intellij.plugins.testUtil包,在下文中一共展示了CopyFile类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testCompleteRef3
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile("included.rnc")
public void testCompleteRef3() throws Throwable {
doTestCompletion("complete-ref-3", "rnc");
}
示例2: testMissingStart
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile("included.rnc")
public void testMissingStart() throws Throwable {
doExternalToolHighlighting("missing-start.rnc");
}
示例3: testCompleteRef3
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile("included.rng")
public void testCompleteRef3() throws Throwable {
doTestCompletion("complete-ref-3.rng", new String[]{ "included.start.element" });
}
示例4: testFoMain
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile("fo/*.rnc")
public void testFoMain() throws Throwable {
doHighlightingTest("fo/main.rnc");
}
示例5: testFoElements
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile("fo/*.rnc")
public void testFoElements() throws Throwable {
doHighlightingTest("fo/elements.rnc");
}
示例6: testPartiallyBrokenRng
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile("broken.rng")
public void testPartiallyBrokenRng() throws Throwable {
myTestFixture.testHighlighting("broken-rng.xml");
}
示例7: testPartiallyBrokenRnc
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile("broken.rnc")
public void testPartiallyBrokenRnc() throws Throwable {
myTestFixture.testHighlighting("broken-rnc.xml");
}
示例8: testEntityRef1
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile("entity-included.xml")
public void testEntityRef1() throws Throwable {
doTest("entity-test-1.xml");
}
示例9: testEntityRef2
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile("entity-included.xml")
public void testEntityRef2() throws Throwable {
doTest("entity-test-2.xml");
}
示例10: testValidIncludeRnc
import org.intellij.plugins.testUtil.CopyFile; //导入依赖的package包/类
@CopyFile({"rnc/include.rnc", "rnc/included.rnc"})
public void testValidIncludeRnc() throws Throwable {
doHighlightingTest("rnc/valid-rnc-include.xml");
}