@Test
  public void testParameterToPairsWhenNameIsInvalid() throws Exception {
    List<Pair> pairs_a = apiClient.parameterToPairs("csv", null, new Integer(1));
    List<Pair> pairs_b = apiClient.parameterToPairs("csv", "", new Integer(1));

    assertTrue(pairs_a.isEmpty());
    assertTrue(pairs_b.isEmpty());
  }
  @Test
  public void testParameterToPairsWhenValueIsNull() throws Exception {
    List<Pair> pairs = apiClient.parameterToPairs("csv", "param-a", null);

    assertTrue(pairs.isEmpty());
  }