public void testCreatePositions() {
    // There will be a compile error here until
    // you create the createGeocaches method
    Geocache[] pts = StaticMethodsAreEasy.createGeocaches(-1);
    assertEquals(0, pts.length);

    pts = StaticMethodsAreEasy.createGeocaches(10);
    assertEquals(10, pts.length);
    for (int i = 0; i < 10; i++) assertNotNull(pts[i]);
    assertFalse(pts[0] == pts[1]);
  }