/**
* @test java.sql.SQLSyntaxErrorException(String, String, int)
*/
public void test_Constructor_LStringLStringI_2() {
SQLSyntaxErrorException sQLSyntaxErrorException = new SQLSyntaxErrorException(
"MYTESTSTRING1", "MYTESTSTRING2", -1);
assertNotNull(sQLSyntaxErrorException);
assertEquals(
"The SQLState of SQLSyntaxErrorException set and get should be equivalent",
"MYTESTSTRING2", sQLSyntaxErrorException.getSQLState());
assertEquals(
"The reason of SQLSyntaxErrorException set and get should be equivalent",
"MYTESTSTRING1", sQLSyntaxErrorException.getMessage());
assertEquals("The error code of SQLSyntaxErrorException should be -1",
sQLSyntaxErrorException.getErrorCode(), -1);
}