01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest.perf.collections;
05:
06: import com.tc.simulator.app.ApplicationConfig;
07: import com.tc.simulator.listener.ListenerProvider;
08:
09: public class IdentityHashMapPerfTestApp extends
10: CollectionsPerfTestAppBase {
11:
12: public IdentityHashMapPerfTestApp(String appId,
13: ApplicationConfig cfg, ListenerProvider listenerProvider) {
14: super (appId, cfg, listenerProvider);
15: setCollection(new CollectionType.IdentityHashMapCollection());
16: }
17: }
|