// Use DatabasePropertyTestSetup decorator to set the property
// required by this test.
Properties props = new Properties();
props.setProperty("derby.database.sqlAuthorization", "true");
Test test = new SQLAuthorizationPropTest("grantRevokeAfterSettingSQLAuthProperty");
suite.addTest(new DatabasePropertyTestSetup (test, props));
// This test has to be run after SQL authorization property has been
// set to true.
suite.addTest(new SQLAuthorizationPropTest("resetSQLAuthProperty"));