/**
* Verify that the persistent unit property configuration is enabling
* the TIMESTAMP Eviction Policy.
*/
public void testTimestampEvictionEnablement() {
ConcurrentQueryCache qc = getQueryCache();
EvictPolicy ep = qc.getEvictPolicy();
assertTrue(ep == EvictPolicy.TIMESTAMP);
}