Priority low = Priority.clazz.createAndInsertObject(editingContext);
low._setValueForPrimaryKey("low", "id");
low.setSortOrder(Integer.valueOf(4));
low.setTextDescription("Low");
TestItemState open = TestItemState.clazz.createAndInsertObject(editingContext);
open._setValueForPrimaryKey("open", "oid");
open.setSortOrder(Integer.valueOf(1));
open.setName("Open");
TestItemState bug = TestItemState.clazz.createAndInsertObject(editingContext);
bug._setValueForPrimaryKey("bug", "oid");
bug.setSortOrder(Integer.valueOf(2));
bug.setName("Bug");
TestItemState closed = TestItemState.clazz.createAndInsertObject(editingContext);
closed._setValueForPrimaryKey("clsd", "oid");
closed.setSortOrder(Integer.valueOf(3));
closed.setName("Closed");
TestItemState requirement = TestItemState.clazz.createAndInsertObject(editingContext);
requirement._setValueForPrimaryKey("rqmt", "oid");
requirement.setSortOrder(Integer.valueOf(4));
requirement.setName("Requirement");
Difficulty hardDifficulty = Difficulty.clazz.createAndInsertObject(editingContext);
hardDifficulty._setValueForPrimaryKey(Integer.valueOf(1), "id");
hardDifficulty.setDifficultyDescription("Hard");