/**
* @test java.sql.SQLTransientException(String, String, int, Throwable)
*/
public void test_Constructor_LStringLStringILThrowable_4() {
Throwable cause = new Exception("MYTHROWABLE");
SQLTransientException sQLTransientException = new SQLTransientException(
"MYTESTSTRING1", "MYTESTSTRING2", -1, cause);
assertNotNull(sQLTransientException);
assertEquals(
"The SQLState of SQLTransientException set and get should be equivalent",
"MYTESTSTRING2", sQLTransientException.getSQLState());
assertEquals(
"The reason of SQLTransientException set and get should be equivalent",
"MYTESTSTRING1", 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());
}