Remove a Groovy test already covered by testConfigFileParsingError()

The removed test testConfigFileParsingErrorWhenNamedBeans() could cause
a groovyc compilation error, for example when using latest IntelliJ IDEA.

Issue: SPR-12435
This commit is contained in:
Sebastien Deleuze 2014-11-25 12:03:28 +01:00
parent 400738e804
commit f39c505069
2 changed files with 0 additions and 11 deletions

View File

@ -74,9 +74,4 @@ public class GroovyApplicationContextTests {
new GenericGroovyApplicationContext("org/springframework/context/groovy/applicationContext-error.groovy");
}
@Test(expected = BeanDefinitionParsingException.class)
public void testConfigFileParsingErrorWhenNamedBeans() {
new GenericGroovyApplicationContext("org/springframework/context/groovy/beans.groovy");
}
}

View File

@ -1,6 +0,0 @@
package org.springframework.context.groovy
beans = {
framework String, 'Grails'
foo String, 'hello'
}