()
| 29 | private String simpleSql2; |
| 30 | |
| 31 | @Before |
| 32 | public void before() { |
| 33 | // TODO Auto-generated method stub |
| 34 | table1 = "table1"; |
| 35 | table2 = "table2"; |
| 36 | column1 = "column1"; |
| 37 | column2 = "column2"; |
| 38 | column3 = "column3"; |
| 39 | simpleSql = "select " + column1 +" from " + table1; |
| 40 | simpleSql2 = "select t." + column1 + " from " + table1 + " t"; |
| 41 | } |
| 42 | |
| 43 | @Test |
| 44 | public void testParse() { |
nothing calls this directly
no outgoing calls
no test coverage detected