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