Package com.voyagegames.java.tracking

Examples of com.voyagegames.java.tracking.KeyValue


public class KeyValueTest {

  @Test
  public void testKeyValue() {
    final long start = System.currentTimeMillis();
    final KeyValue kv = new KeyValue("testkey", "testvalue");
    final long end = System.currentTimeMillis();
   
    assertTrue(kv.key.contentEquals("testkey"));
    assertTrue(kv.value.contentEquals("testvalue"));
    assertTrue(kv.timestamp >= start);
View Full Code Here

TOP

Related Classes of com.voyagegames.java.tracking.KeyValue

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.