Amend: Use isEmpty() where possible in BandwidthManager. Change-Id: I85fe54982245e088f60dd33148aed72e6abfc9ec Former-commit-id: 28c97849800c624bdaa161f05777703ee2a510ac
24 lines
No EOL
1.2 KiB
XML
24 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
|
|
xmlns:tx="http://www.springframework.org/schema/tx"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
http://www.springframework.org/schema/tx
|
|
http://www.springframework.org/schema/tx/spring-tx.xsd">
|
|
|
|
<!-- Used in the case where a second in-memory database needs to be started
|
|
in the same unit test -->
|
|
|
|
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
|
|
destroy-method="close">
|
|
<property name="driverClassName" value="org.hsqldb.jdbc.JDBCDriver" />
|
|
<property name="url" value="jdbc:hsqldb:mem:unit-testing2" />
|
|
<property name="username" value="sa" />
|
|
<property name="password" value="" />
|
|
<property name="defaultAutoCommit" value="false" />
|
|
</bean>
|
|
|
|
<import resource="classpath:/unit-test-db-session.xml" />
|
|
|
|
</beans> |