1 package com.wikihouse.wildcats0201.jdbcchart.fsutil;
2
3 import junit.framework.TestCase;
4
5 /***
6 * <B>PathSpliterFactoryTest </B>.
7 *
8 * @author $Author: wildcats $
9 * @version $Revision: 2 $
10 */
11 public class PathSpliterFactoryTest extends TestCase {
12
13
14
15
16
17 public void testCreateString() {
18 assertTrue(PathSpliterFactory.create("BBBBB") instanceof PathSpliter);
19 }
20
21
22
23
24
25 public void testCreatePath() {
26 assertTrue(PathSpliterFactory.create((Path) null) instanceof PathSpliter);
27 }
28
29 }