@Test(expected = WebServiceFaultException.class)
 public void testGetMissingTimeSheets() throws Exception {
   client.getTimeSheets("00000000");
 }
 @Test
 public void testGetTimeSheets() throws Exception {
   final List<TimeSheet> timeSheets = client.getTimeSheets("00550349");
   verifyMappedData(timeSheets);
 }