mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
18 lines
426 B
Java
18 lines
426 B
Java
package com.intellij.refactoring;
|
|
|
|
import junit.framework.Test;
|
|
import junit.framework.TestCase;
|
|
import junit.framework.TestSuite;
|
|
|
|
/**
|
|
* @author dsl
|
|
*/
|
|
public class IntroduceVariableSuite extends TestCase {
|
|
public static Test suite() {
|
|
final TestSuite suite = new TestSuite();
|
|
suite.addTestSuite(IntroduceVariableTest.class);
|
|
suite.addTestSuite(IntroduceVariableMultifileTest.class);
|
|
return suite;
|
|
}
|
|
}
|