测试选项
public
class
TestOption
extends Object
java.lang.Object 中 | |
↳ | com.android.tradefed.util.testmapping.TestOption |
将测试选项详细信息集存储在 TEST_MAPPING 文件中。
摘要
公共构造函数 | |
---|---|
TestOption(String name, String value)
|
公共方法 | |
---|---|
int
|
compareTo(TestOption option)
|
boolean
|
equals(Object obj)
|
String
|
getName()
|
String
|
getValue()
|
int
|
hashCode()
|
boolean
|
isExclusive()
检查该选项是否仅用于排除某些测试。 |
boolean
|
isInclusive()
检查该选项是否仅用于包含某些测试。 |
String
|
toString()
|
公共构造函数
测试选项
public TestOption (String name, String value)
参数 | |
---|---|
name |
String |
value |
String |
公共方法
equals
public boolean equals (Object obj)
参数 | |
---|---|
obj |
Object |
返回 | |
---|---|
boolean |
getName
public String getName ()
返回 | |
---|---|
String |
getValue
public String getValue ()
返回 | |
---|---|
String |
hashCode
public int hashCode ()
返回 | |
---|---|
int |
独占模式
public boolean isExclusive ()
检查该选项是否仅用于排除某些测试。
下面是一些独占选项示例:
排除过滤器
negative-testname-filter (GTest)
test-file-exclude-filter (AndroidJUnitTest)
排除注释 (AndroidJUnitTest)
返回 | |
---|---|
boolean |
如果该选项仅用于排除某些测试,则为 true。 |
兼容
public boolean isInclusive ()
检查该选项是否仅用于包含某些测试。
以下是一些包含选项的示例:
包含过滤器
campaign-testname-filter (GTest)
test-file-include-filter (AndroidJUnitTest)
包含注解 (AndroidJUnitTest)
返回 | |
---|---|
boolean |
如果该选项仅用于包含某些测试,则为 true。 |
toString
public String toString ()
返回 | |
---|---|
String |