/**
* @test java.sql.SQLSyntaxErrorException(String, String, Throwable)
*/
public void test_Constructor_LStringLStringLThrowable_6() {
Throwable cause = new Exception("MYTHROWABLE");
SQLSyntaxErrorException sQLSyntaxErrorException = new SQLSyntaxErrorException(
null, null, cause);
assertNotNull(sQLSyntaxErrorException);
assertNull("The SQLState of SQLSyntaxErrorException should be null",
sQLSyntaxErrorException.getSQLState());
assertNull("The reason of SQLSyntaxErrorException should be null",
sQLSyntaxErrorException.getMessage());
assertEquals("The error code of SQLSyntaxErrorException should be 0",
sQLSyntaxErrorException.getErrorCode(), 0);
assertEquals(
"The cause of SQLSyntaxErrorException set and get should be equivalent",
cause, sQLSyntaxErrorException.getCause());
}