/** Test of ac_issue_getAllForProduct method, of class MetadataRDFConverter. */
  @Test
  public void testAc_issue_getAllForProduct() {
    System.out.println("* MetadataRDFConverterTest: ac_issue_getAllForProduct");
    String sProductUriEmpty = "";
    // APIResponseData expResult = null;
    APIResponseData resultNull = MetadataRDFConverter.ac_issue_getAllForProduct(sProductUriEmpty);
    // assertEquals(expResult, resultNull);
    assertNotNull(resultNull);
    assertNotNull(resultNull.oData);
    assertEquals(resultNull.oData.size(), 0);

    String sProductUri = "http://www.ifi.uzh.ch/ddis/evoont/2008/11/bom#Product1";
    APIResponseData result = MetadataRDFConverter.ac_issue_getAllForProduct(sProductUri);
    assertNotNull(result);
    assertNotNull(result.oData);
    assertEquals(result.oData.size() > 0, true);
    // assertEquals(expResult, result);

    //// TO-DO review the generated test code and remove the default call to fail.
    // fail("The test case is a prototype.");
  }