01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.bytecode.hook.impl;
05:
06: import junit.framework.TestCase;
07:
08: public class TcActiveTest extends TestCase {
09: public void tests() throws Exception {
10: assertTrue(Boolean.getBoolean("tc.active"));
11: }
12: }
|