/**
* @test java.sql.SQLNonTransientException(String, String, Throwable)
*/
public void test_Constructor_LStringLStringLThrowable() {
Throwable cause = new Exception("MYTHROWABLE");
SQLNonTransientException sQLNonTransientException = new SQLNonTransientException(
"MYTESTSTRING1", "MYTESTSTRING2", cause);
assertNotNull(sQLNonTransientException);
assertEquals(
"The SQLState of SQLNonTransientException set and get should be equivalent",
"MYTESTSTRING2", sQLNonTransientException.getSQLState());
assertEquals(
"The reason of SQLNonTransientException set and get should be equivalent",
"MYTESTSTRING1", sQLNonTransientException.getMessage());
assertEquals("The error code of SQLNonTransientException should be 0",
sQLNonTransientException.getErrorCode(), 0);
assertEquals(
"The cause of SQLNonTransientException set and get should be equivalent",
cause, sQLNonTransientException.getCause());
}