org.apache.jdo.tck.api.persistencemanager.flags
public class: SetIgnoreCacheToFalse [javadoc |
source]
java.lang.Object
org.apache.jdo.tck.JDO_Test
org.apache.jdo.tck.api.persistencemanager.PersistenceManagerTest
org.apache.jdo.tck.api.persistencemanager.flags.SetIgnoreCacheToFalse
Title: Set IgnoreCache To False
Keywords:cache
Assertion ID: A12.5.3-3.
Assertion Description:
The PersistenceManager.setIgnoreCache method called with a value of false instructs the
query engine that the user expects queries to return results that reflect changed values in the cache.
Method from org.apache.jdo.tck.api.persistencemanager.flags.SetIgnoreCacheToFalse Summary: |
---|
main, test |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.jdo.tck.api.persistencemanager.flags.SetIgnoreCacheToFalse Detail: |
public static void main(String[] args) {
BatchTestRunner.run(SetIgnoreCacheToFalse.class);
}
The main is called when the class
is directly executed from the command line. |
public void test() {
pm = getPM();
runTestSetIgnoreCacheToFalse(pm);
pm.close();
pm = null;
}
|