groovy-eclipse
groovy-eclipse copied to clipboard
Eclipse Groovy Development Tools
New Groovy Test Case wizard supports JUnit 3/4/5 templates. Add one or more Spock templates.
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...
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...
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?
Consider the following: ```groovy class DefaultParams { String value DefaultParams(String value = '') { this.value = value } /*@Generated DefaultParams() { this((String)'') }*/ } ``` Rename "DefaultParams" to anything else...
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...
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...
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...
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`
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...