MCPcopy Create free account
hub / github.com/Nemo1870/sql-parse / before

Method before

src/test/java/com/sql/parse/statement/SelectTest.java:31–41  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected