01: package org.slf4j.migrator;
02:
03: import java.io.File;
04: import java.io.IOException;
05:
06: import junit.framework.TestCase;
07:
08: import org.slf4j.migrator.InplaceFileConverter;
09: 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: public void XtestNOP() throws IOException {
30: InplaceFileConverter fc = new InplaceFileConverter(
31: new EmptyRuleSet(), new NopProgressListener());
32: fc.convert(new File("c:/varargs.txt"));
33: }
34: }
|