JDBCMBeanTest#testAttributeDriverLevel uses Java assert in lieu of JUnit 
assert: no real testing happens
--------------------------------------------------------------------------------------------------------

                 Key: DERBY-5521
                 URL: https://issues.apache.org/jira/browse/DERBY-5521
             Project: Derby
          Issue Type: Bug
          Components: Test
            Reporter: Dag H. Wanvik
            Priority: Minor


Cf these lines:

assert(driverLevelString.indexOf('?') == -1);
assert(driverLevelString.matches("^JRE - JDBC: " + JDBCVersion + ".*"));

The "assert" is a Java built-in rather than the JUnit assertTrue we need.

The string driverLevelString is also wrong, since it is a mere toString of the 
bean name. We need to use getAttribute on it to get the driver level
for asserting.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to