01: package org.compass.needle.coherence;
02:
03: /**
04: * @author kimchy
05: */
06: public class DefaultCoherenceDirectoryTests extends
07: AbstractCoherenceDirectoryTests {
08:
09: protected CoherenceDirectory doCreateDirectory(String name,
10: int bucketSize) {
11: return new DataGridCoherenceDirectory(getCache(), name,
12: bucketSize);
13: }
14: }
|