mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 14:37:45 +07:00
10 lines
257 B
Java
10 lines
257 B
Java
package com.intellij.codeInsight;
|
|
|
|
/**
|
|
* @author dsl
|
|
*/
|
|
public class GenerateEquals15Test extends GenerateEqualsTestCase {
|
|
public void testArraysFromJava15() throws Exception {
|
|
doTest(new int[]{0, 1, 2}, new int[]{0, 1, 2}, new int[0], false);
|
|
}
|
|
} |