mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
29 lines
575 B
Java
29 lines
575 B
Java
package com.simpleplugin;
|
|
|
|
import com.intellij.testFramework.ParsingTestCase;
|
|
|
|
public class SimpleParsingTest extends ParsingTestCase {
|
|
public SimpleParsingTest() {
|
|
super("", "simple", new SimpleParserDefinition());
|
|
}
|
|
|
|
public void testParsingTestData() {
|
|
doTest(true);
|
|
}
|
|
|
|
@Override
|
|
protected String getTestDataPath() {
|
|
return "../../SimplePlugin/testData";
|
|
}
|
|
|
|
@Override
|
|
protected boolean skipSpaces() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
protected boolean includeRanges() {
|
|
return true;
|
|
}
|
|
}
|