/**
* @test java.sql.SQLTransientConnectionException(String, String, int,
* Throwable)
*/
public void test_Constructor_LStringLStringILThrowable_23() {
SQLTransientConnectionException sQLTransientConnectionException = new SQLTransientConnectionException(
null, null, -1, null);
assertNotNull(sQLTransientConnectionException);
assertNull(
"The SQLState of SQLTransientConnectionException should be null",
sQLTransientConnectionException.getSQLState());
assertNull(
"The reason of SQLTransientConnectionException should be null",
sQLTransientConnectionException.getMessage());
assertEquals(
"The error code of SQLTransientConnectionException should be -1",
sQLTransientConnectionException.getErrorCode(), -1);
assertNull(
"The cause of SQLTransientConnectionException should be null",
sQLTransientConnectionException.getCause());
}