@Test
 public void testFindTestCaseById() throws Exception {
   TestCase testCase = testCaseDAO.findTestCaseById(1);
   System.out.println(testCase == null ? "null" : testCase.getVersion());
 }