mirror of
https://github.com/alibaba/testable-mock.git
synced 2026-08-23 03:33:30 +08:00
17 lines
333 B
Java
Executable File
17 lines
333 B
Java
Executable File
package com.alibaba.testable;
|
|
|
|
import com.alibaba.testable.transformer.TestableFileTransformer;
|
|
|
|
import java.lang.instrument.Instrumentation;
|
|
|
|
/**
|
|
* @author flin
|
|
*/
|
|
public class PreMain {
|
|
|
|
public static void premain(String agentArgs, Instrumentation inst) {
|
|
inst.addTransformer(new TestableFileTransformer());
|
|
}
|
|
|
|
}
|