Most visited

Recently visited

Added in API level 1
Deprecated since API level 16

ComparisonFailure

public class ComparisonFailure
extends AssertionFailedError

java.lang.Object
    java.lang.Throwable
      java.lang.Error
        android.test.AssertionFailedError
          android.test.ComparisonFailure


此类已在API级别16中弃用。
使用junit.framework.ComparisonFailure

当一个断言等于字符串失败时抛出。

摘要(Summary)

Public constructors

ComparisonFailure(String message, String expected, String actual)

公共方法(Public methods)

String getMessage()

返回此throwable的详细消息字符串。

继承方法(Inherited methods)

From class java.lang.Throwable
From class java.lang.Object

Public constructors

ComparisonFailure

Added in API level 1
ComparisonFailure (String message, 
                String expected, 
                String actual)

参数(Parameters)
message String
expected String
actual String

公共方法(Public methods)

getMessage

Added in API level 1
String getMessage ()

返回此throwable的详细消息字符串。

返回(Returns)
String the detail message string of this Throwable instance (which may be null).

Hooray!