blob: 3df6895053eb9f6af2c11796f0a4bccbb3d93a1a [file] [log] [blame]
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.plugins.groovy.lang.highlighting
import com.intellij.codeInspection.InspectionProfileEntry
import com.intellij.testFramework.LightProjectDescriptor
import org.jetbrains.annotations.NotNull
import org.jetbrains.plugins.groovy.GroovyLightProjectDescriptor
import org.jetbrains.plugins.groovy.codeInspection.assignment.GroovyAssignabilityCheckInspection
import org.jetbrains.plugins.groovy.codeInspection.untypedUnresolvedAccess.GrUnresolvedAccessInspection
/**
* Created by Max Medvedev on 17/02/14
*/
class Groovy23HighlightingTest extends GrHighlightingTestBase {
@Override
@NotNull
protected LightProjectDescriptor getProjectDescriptor() {
return GroovyLightProjectDescriptor.GROOVY_2_3;
}
void testSam1() {
testHighlighting('''
interface Action<T, X> {
void execute(T t, X x)
}
public <T, X> void exec(T t, Action<T, X> f, X x) {
}
def foo() {
exec('foo', { String t, Integer x -> ; }, 1)
exec<warning descr="'exec' in '_' cannot be applied to '(java.lang.String, groovy.lang.Closure<java.lang.Void>, java.lang.Integer)'">('foo', { Integer t, Integer x -> ; }, 1)</warning>
}
''')
}
void testSam2() {
testHighlighting('''
interface Action<T> {
void execute(T t)
}
public <T> void exec(T t, Action<T> f) {
}
def foo() {
exec('foo') {print it.toUpperCase() ;print 2 }
exec('foo') {print it.<warning descr="Cannot resolve symbol 'intValue'">intValue</warning>() ;print 2 }
}
''')
}
void testSam3() {
testHighlighting('''
interface Action<T, X> {
void execute(T t, X x)
}
public <T, X> void exec(T t, Action<T, X> f, X x) {
f.execute(t, x)
}
def foo() {
exec('foo', { String s, Integer x -> print s + x }, 1)
exec<warning descr="'exec' in '_' cannot be applied to '(java.lang.String, groovy.lang.Closure, java.lang.Integer)'">('foo', { Integer s, Integer x -> print 9 }, 1)</warning>
}
''')
}
final InspectionProfileEntry[] customInspections = [new GroovyAssignabilityCheckInspection(), new GrUnresolvedAccessInspection()]
}