Package com.force.sdk.jpa.query.entities

Examples of com.force.sdk.jpa.query.entities.QueryFTestEntity


    @BeforeClass
    void initTestData() {
        // Add all the data necessary for running basic tests
        List<QueryFTestEntity> whereHavingTestEntityData = new ArrayList<QueryFTestEntity>(12);

        QueryFTestEntity testEntityOne = QueryFTestEntity.init("one", 1, "AAA", new Date(), 0,
                                                                    new PickValues[] {PickValues.ONE});
        QueryFTestEntity testEntityTwo = QueryFTestEntity.init("two", 2, "AAA", new Date(), 0,
                                                                    new PickValues[] {PickValues.TWO});
        QueryFTestEntity testEntityThree = QueryFTestEntity.init("three", 3, "AAA", new Date(), 0,
                                                                    new PickValues[] {PickValues.THREE});

        whereHavingTestEntityData.add(testEntityOne);
        whereHavingTestEntityData.add(testEntityTwo);
        whereHavingTestEntityData.add(testEntityThree);
View Full Code Here

TOP

Related Classes of com.force.sdk.jpa.query.entities.QueryFTestEntity

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.