mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
312 B
Java
15 lines
312 B
Java
package com.intellij.refactoring;
|
|
|
|
import junit.textui.TestRunner;
|
|
import junit.framework.TestSuite;
|
|
import com.intellij.TestAll;
|
|
|
|
/**
|
|
* @author dsl
|
|
*/
|
|
public class Run {
|
|
public static void main(String[] args) throws Exception {
|
|
new TestRunner().doRun(new TestSuite(IntroduceVariableTest.class));
|
|
}
|
|
}
|