Package com.nearinfinity.honeycomb.mysql.generators

Examples of com.nearinfinity.honeycomb.mysql.generators.UUIDGenerator


import java.util.UUID;

public class UtilTest {
    @Test
    public void testUUIDBytes() throws Exception {
        for (UUID uuid : Iterables.toIterable(new UUIDGenerator())) {
            Assert.assertEquals(uuid, Util.bytesToUUID(Util.UUIDToBytes(uuid)));
        }
    }
View Full Code Here

TOP

Related Classes of com.nearinfinity.honeycomb.mysql.generators.UUIDGenerator

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.