Package com.cin.service

Examples of com.cin.service.ScoreCache


  }

  @Test
  public void testGetInstance() {
    // make sure it's a singleton
    ScoreCache o1 = ScoreCache.getInstance();
    ScoreCache o2 = ScoreCache.getInstance();

    assertTrue(o1 == o2);
  }
View Full Code Here

TOP

Related Classes of com.cin.service.ScoreCache

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.