-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
Description
Rationale
Why should this feature exist?
Improve the efficiency of test case execution, moving test cases to plugins can reduce the execution time by about 3 minutes.
Implementation
Split into three steps:
- Change
LiteFullNodeToolandLiteFullNodeToolTestto deprecated and in therunmethod prompts: LiteFullNodeTool is an obsolete tool and is not recommended to be used any more, please use the tool DbLite@Slf4j @Deprecated public class LiteFullNodeTool { ... private void run(Args argv) { logger.info("LiteFullNodeTool is an obsolete tool and is not recommended to be used any more, please use the tool DbLite."); } }
- Copy the
LiteFullNodeTesttest case from theframeworkinto thepluginsmodule and name itDbLiteTest,path:org/tron/plugins/DbLiteTest.java@Slf4j public class DbLiteTest {
- The next release will remove
LiteFullNodeTestfrom theframework