mirror of https://github.com/apache/openjpa.git
OPENJPA-344. Moved temporary files into the target dir.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@571210 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
849e10a391
commit
cbe8908430
|
@ -31,7 +31,8 @@ public class TestCacheMarshaller
|
|||
"default(Id=" + getClass().getName() + ", ValidationPolicy="
|
||||
+ OpenJPAVersionAndConfigurationTypeValidationPolicy.class
|
||||
.getName()
|
||||
+ ", InputURL=file:" + getClass().getName() + ".ser, OutputFile="
|
||||
+ ", InputURL=file:target/" + getClass().getName() + ".ser"
|
||||
+ ", OutputFile=target/"
|
||||
+ getClass().getName() + ".ser)"
|
||||
});
|
||||
emf.createEntityManager().close();
|
||||
|
|
|
@ -38,7 +38,8 @@ public class TestCacheMarshallerEndToEnd
|
|||
private static final Object[] STORE_PROPS = new Object[] {
|
||||
"openjpa.CacheMarshallers",
|
||||
"default(Id=" + MetaDataCacheMaintenance.class.getName()
|
||||
+ ", OutputFile=" + MetaDataCacheMaintenance.class.getName() +".ser"
|
||||
+ ", OutputFile=target/"
|
||||
+ MetaDataCacheMaintenance.class.getName() +".ser"
|
||||
+ ", ConsumeSerializationErrors=false"
|
||||
+ ", ValidationPolicy="
|
||||
+ OpenJPAVersionAndConfigurationTypeValidationPolicy.class.getName()
|
||||
|
@ -53,8 +54,8 @@ public class TestCacheMarshallerEndToEnd
|
|||
private static final Object[] LOAD_PROPS = new Object[] {
|
||||
"openjpa.CacheMarshallers",
|
||||
"default(Id=" + MetaDataCacheMaintenance.class.getName()
|
||||
+ ", InputURL=file:" + MetaDataCacheMaintenance.class.getName()
|
||||
+ ".ser"
|
||||
+ ", InputURL=file:target/"
|
||||
+ MetaDataCacheMaintenance.class.getName() + ".ser"
|
||||
+ ", ConsumeSerializationErrors=false"
|
||||
+ ", ValidationPolicy="
|
||||
+ OpenJPAVersionAndConfigurationTypeValidationPolicy.class.getName()
|
||||
|
|
Loading…
Reference in New Issue