1
zhanghua
2024-09-26 c775c6953d9759e70f08acbfa8f6d7490aaae3d1
1
2
3
4
5
6
7
8
9
package com.netsdk.demo.util;
 
public interface Testable {
    void initTest();
    
    void runTest() throws InterruptedException;
    
    void endTest();
}