GTestResultParser
public
class
GTestResultParser
extends MultiLineReceiver
| java.lang.Object | ||
| ↳ | com.android.ddmlib.MultiLineReceiver | |
| ↳ | com.android.tradefed.testtype.GTestResultParser | |
Kabuktan çalışan GTest'i kullanarak yerel testlerin "ham çıkış modu" sonuçlarını ayrıştırır ve sonuçlar hakkında bir ITestInvocationListener'ı bilgilendirir.
Beklenen çıktının örnek biçimi:
[==========] Running 15 tests from 1 test case. [----------] Global test environment set-up. [----------] 15 tests from MessageTest [ RUN ] MessageTest.DefaultConstructor [ OK ] MessageTest.DefaultConstructor (1 ms) [ RUN ] MessageTest.CopyConstructor external/gtest/test/gtest-message_test.cc:67: Failure Value of: 5 Expected: 2 external/gtest/test/gtest-message_test.cc:68: Failure Value of: 1 == 1 Actual: true Expected: false [ FAILED ] MessageTest.CopyConstructor (2 ms) ... [ RUN ] MessageTest.DoesNotTakeUpMuchStackSpace [ OK ] MessageTest.DoesNotTakeUpMuchStackSpace (0 ms) [----------] 15 tests from MessageTest (26 ms total) [----------] Global test environment tear-down [==========] 15 tests from 1 test case ran. (26 ms total) [ PASSED ] 6 tests. [ FAILED ] 9 tests, listed below: [ FAILED ] MessageTest.CopyConstructor [ FAILED ] MessageTest.ConstructsFromCString [ FAILED ] MessageTest.StreamsCString [ FAILED ] MessageTest.StreamsNullCString [ FAILED ] MessageTest.StreamsString [ FAILED ] MessageTest.StreamsStringWithEmbeddedNUL [ FAILED ] MessageTest.StreamsNULChar [ FAILED ] MessageTest.StreamsInt [ FAILED ] MessageTest.StreamsBasicIoManip 9 FAILED TESTS
Aşağıdaki etiketler belirli etkinlikleri bildirmek için kullanılır:
[==========]: the first occurrence indicates a new run started, including the number of tests
to be expected in this run
[ RUN ]: indicates a new test has started to run; a series of zero or more lines may
follow a test start, and will be captured in case of a test failure or error
[ OK ]: the preceding test has completed successfully, optionally including the time it
took to run (in ms)
[ FAILED ]: the preceding test has failed, optionally including the time it took to run (in ms)
[==========]: the preceding test run has completed, optionally including the time it took to run
(in ms)
Özet
Herkese açık oluşturucular | |
|---|---|
GTestResultParser(String testRunName,
GTestResultParser'ı oluşturur. |
|
GTestResultParser(String testRunName,
GTestResultParser'ı oluşturur. |
|
Herkese açık yöntemler | |
|---|---|
void
|
cancel()
Test çalıştırmasının iptal edilmesini ister. |
void
|
done()
adb oturumu tamamlandığında üst öğe tarafından çağrılır. |
|
getFailedTests()
Mevcut test çalıştırması sırasında başarısız olan testlerin listesini döndürür. |
boolean
|
getPrependFileName()
|
boolean
|
isCancelled()
Test çalıştırması iptal edildiyse true değerini döndürür. |
boolean
|
isTestRunIncomplete()
Test çalıştırmasının tamamlanıp tamamlanmadığı. |
void
|
processNewLines(String[] lines)
Uzak işlem tarafından yeni satırlar alındığında çağrılır. |
void
|
setPrependFileName(boolean prepend)
|
Korunan yöntemler | |
|---|---|
boolean
|
isUnexpectedTestFound()
Birim testi için kullanıma sunuldu. |
Herkese açık oluşturucular
GTestResultParser
public GTestResultParser (String testRunName,
listeners) GTestResultParser'ı oluşturur.
| Parametreler | |
|---|---|
testRunName |
String: ITestLifeCycleReceiver.testRunStarted(String, int)'ye sağlanacak test çalıştırması adı |
listeners |
: Testler yürütülürken test sonuçları hakkında bilgilendirilir. |
GTestResultParser
public GTestResultParser (String testRunName,
listeners,
boolean allowRustTestName) GTestResultParser'ı oluşturur.
| Parametreler | |
|---|---|
testRunName |
String: ITestLifeCycleReceiver.testRunStarted(String, int)'ye sağlanacak test çalıştırması adı |
listeners |
: Testler yürütülürken test sonuçları hakkında bilgilendirilir. |
allowRustTestName |
boolean: Test adlarının "::" ayırma kalıbını izlemesine izin verme |
Herkese açık yöntemler
iptal
public void cancel ()
Test çalıştırmasının iptal edilmesini ister.
bitti
public void done ()
adb oturumu tamamlandığında üst öğe tarafından çağrılır.
getFailedTests
publicgetFailedTests ()
Mevcut test çalıştırması sırasında başarısız olan testlerin listesini döndürür.
| İlerlemeler | |
|---|---|
|
|
getPrependFileName
public boolean getPrependFileName ()
| İlerlemeler | |
|---|---|
boolean |
|
isCancelled
public boolean isCancelled ()
Test çalıştırması iptal edildiyse true değerini döndürür.
| İlerlemeler | |
|---|---|
boolean |
|
isTestRunIncomplete
public boolean isTestRunIncomplete ()
Test çalıştırmasının tamamlanıp tamamlanmadığı.
| İlerlemeler | |
|---|---|
boolean |
Test çalıştırması ayrıştırma sorunları veya kilitlenmeler nedeniyle tamamlanmadıysa true. |
processNewLines
public void processNewLines (String[] lines)
Uzak işlem tarafından yeni satırlar alındığında çağrılır.
Bu yönteme verilen satırların eksiksiz olduğu garanti edilir.
| Parametreler | |
|---|---|
lines |
String: Yeni satırları içeren dizi. |
setPrependFileName
public void setPrependFileName (boolean prepend)
| Parametreler | |
|---|---|
prepend |
boolean |
Korunan yöntemler
isUnexpectedTestFound
protected boolean isUnexpectedTestFound ()
Birim testi için kullanıma sunuldu.
| İlerlemeler | |
|---|---|
boolean |
|