1   /*
2    * Created on Apr 19, 2005
3    */
4   package com.flexiblewebsolutions.io.util.test;
5   
6   import java.io.File;
7   
8   import junit.framework.TestCase;
9   
10  import com.flexiblewebsolutions.io.util.FileUtils;
11  
12  /***
13   * @author Donavon
14   */
15  public class UtilityTest extends TestCase
16  {
17      public void testFileUtils()
18      {
19          FileUtils fu = new FileUtils();
20          StringBuffer fileContents = fu.loadXMLFileToString( new File(
21                  "project.xml" ) );
22          assertNotNull( fileContents );
23      }
24  }