RustTestResultParser 类的构造函数
public
class
RustTestResultParser
extends MultiLineReceiver
java.lang.Object 中 | ||
↳ | com.android.ddmlib.MultiLineReceiver | |
↳ | com.android.tradefed.testtype.rust.RustTestResultParser |
解释使用 Rust 的 unittest 框架运行的测试的输出,并将其转换为
一系列 ITestInvocationListener
。
在 Rust 测试中查找以下输出:
running 10 tests
test LexError ... ok <0.001s>
test idents ... FAILED <0.000s>
test make_sure_no_proc_macro ... ignored
test test_scalar_div_rem_zero ... ignored, Android sometimes uses panic_abort
...
---- tests::idents stdout ----
thread 'main' panicked at 'assertion failed: `(left == right)`
...
test result: ok. 10 passed; 1 failed; 1 ignored; 0 measured; 0 filtered out
@请参阅 https://doc.rust-lang.org/book/ch11-00-testing.html
摘要
公共构造函数 | |
---|---|
RustTestResultParser(ITestInvocationListener listener, String runName)
创建一个新的 |
|
RustTestResultParser(
创建一个新的 |
公共方法 | |
---|---|
void
|
done()
将录制的测试结果发送给所有听众。 |
boolean
|
isCancelled()
|
void
|
processNewLines(String[] lines)
处理 Rust 单元测试输出。 |
公共构造函数
RustTestResultParser 类的构造函数
public RustTestResultParser (ITestInvocationListener listener, String runName)
创建一个新的 RustTestResultParser
,用于向给定的 ITestInvocationListener
报告。
参数 | |
---|---|
listener |
ITestInvocationListener :测试调用监听器 |
runName |
String :测试名称 |
RustTestResultParser 类的构造函数
public RustTestResultParser (listeners, String runName)
创建一个新的 RustTestResultParser
,用于向给定的 ITestInvocationListener
报告。
参数 | |
---|---|
listeners |
:测试调用监听器 |
runName |
String :测试名称 |
公共方法
done
public void done ()
将录制的测试结果发送给所有听众。
已取消
public boolean isCancelled ()
返回 | |
---|---|
boolean |
processNewLines
public void processNewLines (String[] lines)
处理 Rust 单元测试输出。
参数 | |
---|---|
lines |
String |