Package com.altamiracorp.bigtable.model

Examples of com.altamiracorp.bigtable.model.Value.toLong()


public class ValueTest {
    @Test
    public void testLongConversion() {
        for (long i = 0; i < 10000; i++) {
            Value value = new Value(new Long(i));
            assertEquals(i, value.toLong().longValue());
        }
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.