Package org.eurekastreams.server.domain

Examples of org.eurekastreams.server.domain.AppDataValue


     * Simple test to ensure the AppDataValue DataSet setup.
     */
    @Test
    public void testAppDataValueDatasetSetup()
    {
        AppDataValue testAppDataValue = jpaAppDataValueMapper.findById(new Long(testAppDataValueId));
        assertEquals("Key is not correct.", "viewcount", testAppDataValue.getName());
        assertEquals("Value is not correct.", "2", testAppDataValue.getValue());

    }
View Full Code Here

TOP

Related Classes of org.eurekastreams.server.domain.AppDataValue

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.