@Test
public void testWeakRefCache()
{
GraphDatabaseService db = newDb( "weak" );
assertEquals( CacheType.weak, ((EmbeddedGraphDatabase) db).getConfig().getGraphDbModule().getNodeManager().getCacheType() );
db.shutdown();
}
@Test
public void testSoftRefCache()
{