fileconvertertest.java

来自「Java开发最新的日志记录工具slf4j的源码」· Java 代码 · 共 35 行

JAVA
35
字号
package org.slf4j.migrator;

import java.io.File;
import java.io.IOException;

import junit.framework.TestCase;

import org.slf4j.migrator.InplaceFileConverter;
import org.slf4j.migrator.internal.NopProgressListener;
import org.slf4j.migrator.line.EmptyRuleSet;

public class FileConverterTest extends TestCase {

  public FileConverterTest(String arg0) {
    super(arg0);
  }

  protected void setUp() throws Exception {
    super.setUp();
  }

  protected void tearDown() throws Exception {
    super.tearDown();
  }

  public void test() {
  }

  
  public void XtestNOP() throws IOException {
    InplaceFileConverter fc = new InplaceFileConverter(new EmptyRuleSet(), new NopProgressListener());
    fc.convert(new File("c:/varargs.txt"));
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?