/**
* @test java.sql.SQLTransactionRollbackException(String, String, int)
*/
public void test_Constructor_LStringLStringI_2() {
SQLTransactionRollbackException sQLTransactionRollbackException = new SQLTransactionRollbackException(
"MYTESTSTRING1", "MYTESTSTRING2", -1);
assertNotNull(sQLTransactionRollbackException);
assertEquals(
"The SQLState of SQLTransactionRollbackException set and get should be equivalent",
"MYTESTSTRING2", sQLTransactionRollbackException.getSQLState());
assertEquals(
"The reason of SQLTransactionRollbackException set and get should be equivalent",
"MYTESTSTRING1", sQLTransactionRollbackException.getMessage());
assertEquals(
"The error code of SQLTransactionRollbackException should be -1",
sQLTransactionRollbackException.getErrorCode(), -1);
}