public void endCallView(
        com.meterware.httpunit.WebResponse response)
        throws Exception
    {
        assertTrue(response.isHTML());

        assertEquals("tables", 1, response.getTables().length);
        assertEquals("columns", 2, 
            response.getTables()[0].getColumnCount());
        assertEquals("rows", 3, 
            response.getTables()[0].getRowCount());

        assertEquals("id", 
            response.getTables()[0].getCellAsText(0, 0));
        assertEquals("responsetime", 
            response.getTables()[0].getCellAsText(0, 1));

        assertEquals("12345", 
            response.getTables()[0].getCellAsText(1, 0));//Ӧݴַָ
        assertEquals("500", 
            response.getTables()[0].getCellAsText(1, 1));
        assertEquals("56789", 
            response.getTables()[0].getCellAsText(2, 0));
        assertEquals("430", 
            response.getTables()[0].getCellAsText(2, 1));
    }