Package er.bugtracker

Examples of er.bugtracker.TestItemState


    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");
View Full Code Here

TOP

Related Classes of er.bugtracker.TestItemState

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.