* Test of getAllDrugInfoByUuid method, of class DrugInfoController.
*/
@Test
public void testGetAllDrugInfoByUuid() throws Exception {
String result = controller.getAllDrugInfoByUuid(getUuid(), request);
SimpleObject drugGroup = SimpleObject.parseJson(result);
Assert.assertNotNull(result);
Assert.assertEquals(getUuid(), drugGroup.get("uuid"));
Assert.assertEquals("TestDrugInfo1", drugGroup.get("name"));
Assert.assertNull(drugGroup.get("auditInfo"));
}