01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tctest;
06:
07: public class LinkedBlockingQueueGCTest extends GCTestBase implements
08: TestConfigurator {
09:
10: public void doSetUp(TransparentTestIface t) throws Exception {
11: t.getTransparentAppConfig().setAttribute(
12: LinkedBlockingQueueTestApp.GC_TEST_KEY, "true");
13: super .doSetUp(t);
14: }
15:
16: protected Class getApplicationClass() {
17: return LinkedBlockingQueueTestApp.class;
18: }
19:
20: }
|