Package com.impetus.kundera.metadata.validator

Examples of com.impetus.kundera.metadata.validator.GeneratedIdStrategyAuto


    public void testAutoStrategy() throws NoSuchFieldException, SecurityException, IllegalArgumentException,
            IllegalAccessException
    {
        IdGenerator idGenerator = new IdGenerator();

        GeneratedIdStrategyAuto autoStrategy = new GeneratedIdStrategyAuto();
        autoStrategy.setName("auto strategy");

        Assert.assertEquals(0, autoStrategy.getId());

        EntityMetadata entityMetadata = KunderaMetadataManager.getEntityMetadata(kunderaMetadata,
                GeneratedIdStrategyAuto.class);

        // on auto strategy
        idGenerator.generateAndSetId(autoStrategy, entityMetadata, CoreTestUtilities.getDelegator(em), kunderaMetadata);
        Assert.assertTrue(autoStrategy.getId() > 0);
    }
View Full Code Here

TOP

Related Classes of com.impetus.kundera.metadata.validator.GeneratedIdStrategyAuto

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.