You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 LiteFullNodeTool and LiteFullNodeToolTest to deprecated and in the run method prompts: LiteFullNodeTool is an obsolete tool and is not recommended to be used any more, please use the tool DbLite
@Slf4j@DeprecatedpublicclassLiteFullNodeTool {
...
privatevoidrun(Argsargv) {
logger.info("LiteFullNodeTool is an obsolete tool and is not recommended to be used any more, please use the tool DbLite.");
}
}
Copy the LiteFullNodeTest test case from the framework into the plugins module and name it DbLiteTest,path: org/tron/plugins/DbLiteTest.java
@Slf4jpublicclassDbLiteTest {
The next release will remove LiteFullNodeTest from the framework
The text was updated successfully, but these errors were encountered:
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:
LiteFullNodeTool
andLiteFullNodeToolTest
to deprecated and in therun
method prompts: LiteFullNodeTool is an obsolete tool and is not recommended to be used any more, please use the tool DbLiteLiteFullNodeTest
test case from theframework
into theplugins
module and name itDbLiteTest
,path:org/tron/plugins/DbLiteTest.java
LiteFullNodeTest
from theframework
The text was updated successfully, but these errors were encountered: