01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.rewriter.services.test;
06:
07: import com.sun.portal.rewriter.test.util.BasicTestCase;
08:
09: public class TestDataService extends BasicTestCase {
10: public TestDataService(String aName) {
11: super (aName);
12: }//constuctor
13:
14: public void test() {
15: }
16: }//class TestDataService
|