KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > performance > DummyBuildTest


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.performance;
5
6 import com.tc.test.TCTestCase;
7
8 /**
9  * The build system needs at least one file with the "Test" postfix in order to prep the testing environment.
10  */

11 public class DummyBuildTest extends TCTestCase {
12
13   public void testFake() {
14     assertTrue(true);
15   }
16 }
17
Popular Tags