1 package com.wikihouse.wildcats0201.jdbcchart.fsutil; 2 3 import java.io.File; 4 5 import junit.framework.TestCase; 6 7 /*** 8 * <B>AbstractPathTest </B>. 9 * 10 * @author $Author: wildcats $ 11 * @version $Revision: 2 $ 12 */ 13 public abstract class AbstractPathTest extends TestCase { 14 15 protected final String location1 = File.separatorChar + "Test" 16 + File.separatorChar + "Test1"; 17 18 protected final String location2 = File.separatorChar + "Test1" 19 + File.separatorChar + "Test2" + File.separatorChar + "Test3"; 20 21 }