/*
* All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
*/
package com.tctest;
/*
* Unit test for measuring the overhead of the instrumented Field class. For correctness
* tests for instrumented Field class, refer to the ReflectionFieldTest.
*/
public class AccessibleObjectTest extends TransparentTestBase {
private final static int NODE_COUNT = 2;
public void setUp() throws Exception {
super.setUp();
getTransparentAppConfig().setClientCount(NODE_COUNT);
initializeTestRunner();
}
protected Class getApplicationClass() {
return AccessibleObjectTestApp.class;
}
}
|