mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-22 19:15:15 +00:00
HHH-8302 - add unit test
This commit is contained in:
parent
a4fa28d6b8
commit
b968048485
@ -65,6 +65,9 @@ public void testHHH6635() throws Exception {
|
||||
int actual_minPoolSize = (Integer) mBeanServer.getAttribute( obj, "minPoolSize" );
|
||||
assertEquals( 50, actual_minPoolSize );
|
||||
|
||||
int actual_initialPoolSize = (Integer) mBeanServer.getAttribute( obj, "initialPoolSize" );
|
||||
assertEquals( 50, actual_initialPoolSize );
|
||||
|
||||
int actual_maxPoolSize = (Integer) mBeanServer.getAttribute( obj, "maxPoolSize" );
|
||||
assertEquals( 800, actual_maxPoolSize );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user