PythonBinaryHostTest.PythonForwarder

public static class PythonBinaryHostTest.PythonForwarder
extends ResultForwarder

java.lang.Object
com.android.tradefed.result.results फ़ॉरवर्डer
  com.android.tradefed.testtype.python.PythonBinaryHostTest.Python फ़ॉरवर्डर


रन के नाम को बाइनरी नाम से बदलने के लिए, नतीजे फ़ॉरवर्ड करने वाला टूल.

खास जानकारी

सार्वजनिक कंस्ट्रक्टर

PythonForwarder(ITestInvocationListener listener, String name)

बाइनरी नाम का इस्तेमाल करके, रन नाम वाला Ctor.

सार्वजनिक तरीके

void testRunStarted(String runName, int testCount)

टेस्ट रन शुरू होने की जानकारी देता है.

void testRunStarted(String runName, int testCount, int attempt, long startTime)

टेस्ट रन शुरू होने की रिपोर्ट करता है.

void testRunStarted(String runName, int testCount, int attempt)

टेस्ट रन शुरू होने की जानकारी देता है.

सार्वजनिक कंस्ट्रक्टर

Pythonफ़ॉरवर्डर

public PythonForwarder (ITestInvocationListener listener, 
                String name)

बाइनरी नाम का इस्तेमाल करके, रन नाम वाला Ctor.

पैरामीटर
listener ITestInvocationListener

name String

सार्वजनिक तरीके

testRunStarted

public void testRunStarted (String runName, 
                int testCount)

टेस्ट रन शुरू होने की जानकारी देता है.

पैरामीटर
runName String: टेस्ट रन का नाम

testCount int: टेस्ट रन में टेस्ट की कुल संख्या

testRunStarted

public void testRunStarted (String runName, 
                int testCount, 
                int attempt, 
                long startTime)

टेस्ट रन शुरू होने की जानकारी देता है.

पैरामीटर
runName String: टेस्ट रन का नाम

testCount int: टेस्ट रन में टेस्ट की कुल संख्या

attempt int: ऑर्डर नंबर, एक ही runName के अलग-अलग प्रयासों की पहचान करता है, जो कई बार चलाए जाते हैं. attemptNumber का इंडेक्स 0 से शुरू होता है और हर बार नया रन होने पर, इसकी वैल्यू बढ़नी चाहिए. उदाहरण के लिए, किसी टेस्ट को तीन बार फिर से चलाया जाता है, तो एक ही runName के तहत कुल चार रन होने चाहिए और attemptNumber की वैल्यू 0 से 3 के बीच होनी चाहिए.

startTime long: दौड़ शुरू होने का समय, System.currentTimeMillis() से मापा गया

testRunStarted

public void testRunStarted (String runName, 
                int testCount, 
                int attempt)

टेस्ट रन शुरू होने की जानकारी देता है.

पैरामीटर
runName String: टेस्ट रन का नाम

testCount int: टेस्ट रन में टेस्ट की कुल संख्या

attempt int: ऑर्डर नंबर, एक ही runName के अलग-अलग प्रयासों की पहचान करता है, जो कई बार चलाए जाते हैं. attemptNumber का इंडेक्स 0 से शुरू होता है और हर बार नया रन होने पर, इसकी वैल्यू बढ़नी चाहिए. उदाहरण के लिए, किसी टेस्ट को तीन बार फिर से चलाया जाता है, तो एक ही runName के तहत कुल चार रन होने चाहिए और attemptNumber की वैल्यू 0 से 3 के बीच होनी चाहिए.