Annotators for python sources, and tests for them.

This commit is contained in:
Dmitry Cheryasov
2008-07-18 10:14:40 +04:00
parent f2533d90a7
commit b0f195b105
7 changed files with 42 additions and 5 deletions

View File

@@ -27,6 +27,27 @@ public class PythonHighlightingTest extends DaemonAnalyzerTestCase {
doTest();
}
public void testMalformedStringUnterminated() throws Exception {
doTest();
}
public void testMalformedStringEscaped() throws Exception {
doTest();
}
public void testStringEscapedOK() throws Exception {
doTest();
}
public void testDuplicateClassName() throws Exception {
doTest();
}
public void testMethodParams() throws Exception {
doTest();
}
private void doTest() throws Exception {
doTest(getTestName(true) + ".py", true, true);
}