|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.core.io.DefaultResourceLoader org.codehaus.groovy.grails.support.MockResourceLoader org.codehaus.groovy.grails.support.MockStringResourceLoader
public class MockStringResourceLoader extends MockResourceLoader
Loads Resources from Strings that are registered as Mock resources.
Method Summary | |
---|---|
Resource
|
getResource(java.lang.String location)
|
void
|
registerMockResource(java.lang.String location, java.lang.String contents)
Registers a mock resource with the first argument as the location and the second as the contents of the resource. |
void
|
registerMockResource(java.lang.String location, byte[] contents)
Registers a mock resource with the first argument as the location and the second as the contents of the resource. |
Methods inherited from class MockResourceLoader | |
---|---|
getResource |
Method Detail |
---|
@Override public Resource getResource(java.lang.String location)
public void registerMockResource(java.lang.String location, java.lang.String contents)
location
- The locationcontents
- The contents of the resource
public void registerMockResource(java.lang.String location, byte[] contents)
location
- The locationcontents
- The contents of the resource
Groovy Documentation