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;
05:
06: /*
07: * Unit test for testing method invocations for BigInteger and BigDecimal classes.
08: * Test for testing the sharing of BigInteger and BigDecimal objects is handled by
09: * TransparentTest.
10: */
11: public class BigIntegerDecimalTest extends TransparentTestBase {
12: private final static int NODE_COUNT = 1;
13: private final static int LOOP_COUNT = 1;
14:
15: public void setUp() throws Exception {
16: super .setUp();
17:
18: getTransparentAppConfig().setClientCount(NODE_COUNT)
19: .setIntensity(LOOP_COUNT);
20: initializeTestRunner();
21: }
22:
23: protected Class getApplicationClass() {
24: return BigIntegerDecimalTestApp.class;
25: }
26:
27: }
|