mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
14 lines
395 B
Java
14 lines
395 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.codeInsight.daemon.LightIntentionActionTestCase;
|
|
|
|
public class SimplifyBooleanExpressionTest extends LightIntentionActionTestCase {
|
|
public void test() throws Exception { doAllTests(); }
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/simplifyBooleanExpression";
|
|
}
|
|
}
|
|
|