groovy-eclipse icon indicating copy to clipboard operation
groovy-eclipse copied to clipboard

Eclipse Groovy Development Tools

Results 91 groovy-eclipse issues
Sort by recently updated
recently updated
newest added

New Groovy Test Case wizard supports JUnit 3/4/5 templates. Add one or more Spock templates.

enhancement

Somewhat related to #411. Consider the following code: ```groovy new List().eac| ``` Invoke content assist at "|": it's quite clear and obvious that I want to invoke one of the...

enhancement

When a JUnit test case uses `Assert.assertEquals`, a test failure displays the option Compare Result in the JUnit view's context menu (see below) for easy comparison of expected and actual...

enhancement

Recently added Lambda support for Debugger Variables view: https://www.eclipse.org/eclipse/news/4.12/jdt.php#lambda-variables-variable-view Can a similar enhancement be made for breaking within closure literal blocks?

enhancement

Consider the following: ```groovy class DefaultParams { String value DefaultParams(String value = '') { this.value = value } /*@Generated DefaultParams() { this((String)'') }*/ } ``` Rename "DefaultParams" to anything else...

bug

This setting is set for Java but as there are no such settings for Groovy I would expect it to re-use the settings for java. In my case the settings...

enhancement

Currently the JDK/JRE modules are bootstrapped using Eclipse's class loader. This requires the use of the same Java version for eclipse as you want for your project. For proper support...

enhancement

Follow-up to #762. Consider the following enum: ```java package test40; public enum MyEnum { FOO, BAR; } ``` And the following Groovy class: ```groovy package test40 class Test40 { void...

enhancement

Code like the following supports navigation in Java; support the same in Groovy. ``` /** * @see java.util.List */ class C { } ``` Code of interest: `GCUD.findJavadoc` `GroovyTypeDecl javadoc`

enhancement

Consider the following: ```groovy import foo.bar.* import foo.bar.Baz.* ... ``` When building, warning/error should be produced for each import statement if package "foo.bar" is not part of classpath. Each of...

enhancement