RustTestResultParser

public class RustTestResultParser
extends MultiLineReceiver

java.lang.Object
   ↳ com.android.ddmlib.MultiLineReceiver
     ↳ com.android.tradefed.testtype.rust.RustTestResultParser


使用 Rust 的單元測試架構解讀測試的輸出內容,將其轉譯為 一系列 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)

建立向指定 ITestInvocationListener 回報的新 RustTestResultParser

RustTestResultParser( listeners, String runName)

建立向指定 ITestInvocationListener 回報的新 RustTestResultParser

公用方法

void done()

將記錄的測試結果傳送給所有聽眾。

boolean isCancelled()
void processNewLines(String[] lines)

處理 Rust 單元測試輸出內容。

公用建構函式

RustTestResultParser

public RustTestResultParser (ITestInvocationListener listener, 
                String runName)

建立向指定 ITestInvocationListener 回報的新 RustTestResultParser

參數
listener ITestInvocationListener:測試叫用事件監聽器

runName String:測試名稱

RustTestResultParser

public RustTestResultParser ( listeners, 
                String runName)

建立向指定 ITestInvocationListener 回報的新 RustTestResultParser

參數
listeners :測試叫用事件監聽器

runName String:測試名稱

公用方法

done

public void done ()

將記錄的測試結果傳送給所有聽眾。

已取消

public boolean isCancelled ()

傳回
boolean

程序新行

public void processNewLines (String[] lines)

處理 Rust 單元測試輸出內容。

參數
lines String