/** Test of getJournalistByID method, of class JournalistController. */
 @Test
 public void testGetJournalistByID() {
   System.out.println("getJournalistByID");
   String ID = "10";
   String expResult = "nandula";
   String result = JournalistController.getJournalistByID(ID).getUsername();
   assertEquals(expResult, result);
   System.out.println("");
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }