1 package org.slf4j.migrator;
2
3 import java.io.File;
4 import java.io.IOException;
5
6 import junit.framework.TestCase;
7
8 import org.slf4j.migrator.InplaceFileConverter;
9 import org.slf4j.migrator.internal.NopProgressListener;
10 import org.slf4j.migrator.line.EmptyRuleSet;
11
12 public class FileConverterTest extends TestCase {
13
14 public FileConverterTest(String arg0) {
15 super(arg0);
16 }
17
18 protected void setUp() throws Exception {
19 super.setUp();
20 }
21
22 protected void tearDown() throws Exception {
23 super.tearDown();
24 }
25
26 public void test() {
27 }
28
29
30 public void XtestNOP() throws IOException {
31 InplaceFileConverter fc = new InplaceFileConverter(new EmptyRuleSet(), new NopProgressListener());
32 fc.convert(new File("c:/varargs.txt"));
33 }
34 }