org.apache.jdo.tck.api.persistencemanager.flags
public class: SetMultithreadedFalse [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.SetMultithreadedFalse
Title: Set Multithreaded False
Keywords: multithreaded
Assertion ID: A12.7-2.
Assertion Description:
If PersistenceManager.setMultithreaded is called with a value of false, a value of false
will be returned when getMultithreaded is called.
Method from org.apache.jdo.tck.api.persistencemanager.flags.SetMultithreadedFalse 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.SetMultithreadedFalse Detail: |
public static void main(String[] args) {
BatchTestRunner.run(SetMultithreadedFalse.class);
}
The main is called when the class
is directly executed from the command line. |
public void test() {
pm = getPM();
runTestSetMultithreadedFalse(pm);
pm.close();
pm = null;
}
|