Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / test / java / org / wamblee / io / DirectoryMonitorTest.java
index ac5fbf707ca56a325e9ee62113a8089c74542c32..e1437dcdc2a6c33f8cbaaf0e6924742fa28039df 100644 (file)
@@ -19,6 +19,7 @@ import junit.framework.TestCase;
 
 import org.apache.oro.io.AwkFilenameFilter;
 import static org.mockito.Mockito.*;
+
 public class DirectoryMonitorTest extends TestCase {
     private static final String REGEX = "^.*\\.txt$";
     private static final String FILE1 = "file1.txt";
@@ -32,8 +33,8 @@ public class DirectoryMonitorTest extends TestCase {
         data = new TestData(this);
         data.clean();
         listener = mock(DirectoryMonitor.Listener.class);
-        monitor = new DirectoryMonitor(data.getRoot(),
-                new AwkFilenameFilter(REGEX), listener);
+        monitor = new DirectoryMonitor(data.getRoot(), new AwkFilenameFilter(
+            REGEX), listener);
     }
 
     public void testEmptyDir() {
@@ -95,8 +96,8 @@ public class DirectoryMonitorTest extends TestCase {
         monitor.poll();
         data.createFile(FILE1, "hello");
 
-        stubVoid(listener).toThrow(new RuntimeException()).on()
-            .fileCreated(data.getFile(FILE1));
+        stubVoid(listener).toThrow(new RuntimeException()).on().fileCreated(
+            data.getFile(FILE1));
 
         try {
             monitor.poll();