@Test
  public void testAddValueGuid() {
    Guid guid = new Guid(UUID.randomUUID());

    paramSource.addValue(paramName, guid);
    assertEquals(
        "wrong value returned from parameter source",
        guid.getUuid(),
        paramSource.getValue(paramName));
  }