https://github.com/datanucleus/test-jdo
Template test for demonstrating issues with DataNucleus using the JDO API
https://github.com/datanucleus/test-jdo
jdo
Last synced: 9 months ago
JSON representation
Template test for demonstrating issues with DataNucleus using the JDO API
- Host: GitHub
- URL: https://github.com/datanucleus/test-jdo
- Owner: datanucleus
- Created: 2013-03-01T14:18:59.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2023-08-02T12:54:48.000Z (almost 3 years ago)
- Last Synced: 2025-05-30T20:48:23.622Z (about 1 year ago)
- Topics: jdo
- Language: Java
- Homepage:
- Size: 784 KB
- Stars: 1
- Watchers: 5
- Forks: 40
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
test-jdo
========
Template project for any user testcase using JDO.
To create a DataNucleus test simply fork this project, and add/edit as
necessary to add your model and persistence commands. The files that you'll likely need to edit are
* src/main/java/mydomain/model/ **[Put your model classes here]**
* src/main/resources/META-INF/persistence.xml **[Put your datastore details in here]**
* src/test/java/org/datanucleus/test/SimpleTest.java **[Edit this if a single-thread test is required]**
* src/test/java/org/datanucleus/test/MultithreadTest.java **[Edit this if a multi-thread test is required]**
To run this, simply type "mvn clean compile test"