/**
* @test java.sql.SQLTransientConnectionException(String, String, int)
*/
public void test_Constructor_LStringLStringI_6() {
SQLTransientConnectionException sQLTransientConnectionException = new SQLTransientConnectionException(
null, "MYTESTSTRING", 1);
assertNotNull(sQLTransientConnectionException);
assertEquals(
"The SQLState of SQLTransientConnectionException set and get should be equivalent",
"MYTESTSTRING", sQLTransientConnectionException.getSQLState());
assertNull(
"The reason of SQLTransientConnectionException should be null",
sQLTransientConnectionException.getMessage());
assertEquals(
"The error code of SQLTransientConnectionException should be 1",
sQLTransientConnectionException.getErrorCode(), 1);
}