NativeStressTest
public
class
NativeStressTest
extends Object
implements
IDeviceTest,
IRemoteTest
java.lang.Object | |
↳ | com.android.tradefed.testtype.NativeStressTest |
A Test that runs a native stress test executable on given device.
It usesNativeStressTestParser
to parse out number of iterations completed and report
those results to the ITestInvocationListener
s.
Summary
Public constructors | |
---|---|
NativeStressTest()
|
Public methods | |
---|---|
ITestDevice
|
getDevice()
Get the device under test. |
String
|
getModuleName()
Get the Android native test module to run. |
void
|
run(TestInformation testInfo, ITestInvocationListener listener)
Runs the tests, and reports result to the listener. |
void
|
setDevice(ITestDevice device)
Inject the device under test. |
void
|
setModuleName(String moduleName)
Set the Android native stress test module to run. |
Public constructors
NativeStressTest
public NativeStressTest ()
Public methods
getDevice
public ITestDevice getDevice ()
Get the device under test.
Returns | |
---|---|
ITestDevice |
the ITestDevice |
getModuleName
public String getModuleName ()
Get the Android native test module to run.
Returns | |
---|---|
String |
the name of the native test module to run, or null if not set |
run
public void run (TestInformation testInfo, ITestInvocationListener listener)
Runs the tests, and reports result to the listener.
Parameters | |
---|---|
testInfo |
TestInformation : The TestInformation object containing useful information to run
tests. |
listener |
ITestInvocationListener : the ITestInvocationListener of test results |
Throws | |
---|---|
DeviceNotAvailableException |
setDevice
public void setDevice (ITestDevice device)
Inject the device under test.
Parameters | |
---|---|
device |
ITestDevice : the ITestDevice to use |
setModuleName
public void setModuleName (String moduleName)
Set the Android native stress test module to run.
Parameters | |
---|---|
moduleName |
String : The name of the native test module to run |