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