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