KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > BigIntegerDecimalTest


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tctest;
5
6 /*
7  * Unit test for testing method invocations for BigInteger and BigDecimal classes.
8  * Test for testing the sharing of BigInteger and BigDecimal objects is handled by
9  * 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 JavaDoc {
16     super.setUp();
17     
18     getTransparentAppConfig().setClientCount(NODE_COUNT).setIntensity(LOOP_COUNT);
19     initializeTestRunner();
20   }
21
22   protected Class JavaDoc getApplicationClass() {
23     return BigIntegerDecimalTestApp.class;
24   }
25  
26 }
27
Popular Tags