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 HashMapPerfTestApp extends CollectionsPerfTestAppBase {
10:
11: public HashMapPerfTestApp(String appId, ApplicationConfig cfg,
12: ListenerProvider listenerProvider) {
13: super (appId, cfg, listenerProvider);
14: this .setCollection(new CollectionType.HashMapCollection());
15: }
16:
17: }
|