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

Method before

src/test/java/com/sql/parse/statement/InsertTest.java:30–43  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

28 private String simpleSql3;
29
30 @Before
31 public void before() {
32 // TODO Auto-generated method stub
33 table = "table1";
34 column1 = "column1";
35 column2 = "column2";
36 column3 = "column3";
37 value1 = "1";
38 value2 = "'2'";
39 value3 = "3";
40 simpleSql = "insert into " + table + " values (1)";
41 simpleSql2 = "insert into " + table + "(pk) values (1)";
42 simpleSql3 = "insert into " + table + " select * from table2";
43 }
44
45 @Test
46 public void testParse() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected