MoreAsserts.AssertEmpty Method

Definition

Overloads

AssertEmpty(IIterable)

Variant of #assertEmpty(String, Iterable) using a generic message.

AssertEmpty(IDictionary<Object,Object>)

Variant of #assertEmpty(String, Map) using a generic message.

AssertEmpty(String, IIterable)

Asserts that iterable is empty.

AssertEmpty(String, IDictionary<Object,Object>)

Asserts that map is empty.

AssertEmpty(IIterable)

Variant of #assertEmpty(String, Iterable) using a generic message.

[Android.Runtime.Register("assertEmpty", "(Ljava/lang/Iterable;)V", "")]
public static void AssertEmpty (Java.Lang.IIterable? iterable);
[<Android.Runtime.Register("assertEmpty", "(Ljava/lang/Iterable;)V", "")>]
static member AssertEmpty : Java.Lang.IIterable -> unit

Parameters

iterable
IIterable
Attributes

Remarks

Variant of #assertEmpty(String, Iterable) using a generic message.

Java documentation for android.test.MoreAsserts.assertEmpty(java.lang.Iterable<?>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

AssertEmpty(IDictionary<Object,Object>)

Variant of #assertEmpty(String, Map) using a generic message.

[Android.Runtime.Register("assertEmpty", "(Ljava/util/Map;)V", "")]
public static void AssertEmpty (System.Collections.Generic.IDictionary<object,object>? map);
[<Android.Runtime.Register("assertEmpty", "(Ljava/util/Map;)V", "")>]
static member AssertEmpty : System.Collections.Generic.IDictionary<obj, obj> -> unit

Parameters

Attributes

Remarks

Variant of #assertEmpty(String, Map) using a generic message.

Java documentation for android.test.MoreAsserts.assertEmpty(java.util.Map<?, ?>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

AssertEmpty(String, IIterable)

Asserts that iterable is empty.

[Android.Runtime.Register("assertEmpty", "(Ljava/lang/String;Ljava/lang/Iterable;)V", "")]
public static void AssertEmpty (string? message, Java.Lang.IIterable? iterable);
[<Android.Runtime.Register("assertEmpty", "(Ljava/lang/String;Ljava/lang/Iterable;)V", "")>]
static member AssertEmpty : string * Java.Lang.IIterable -> unit

Parameters

message
String
iterable
IIterable
Attributes

Remarks

Asserts that iterable is empty.

Java documentation for android.test.MoreAsserts.assertEmpty(java.lang.String, java.lang.Iterable<?>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

AssertEmpty(String, IDictionary<Object,Object>)

Asserts that map is empty.

[Android.Runtime.Register("assertEmpty", "(Ljava/lang/String;Ljava/util/Map;)V", "")]
public static void AssertEmpty (string? message, System.Collections.Generic.IDictionary<object,object>? map);
[<Android.Runtime.Register("assertEmpty", "(Ljava/lang/String;Ljava/util/Map;)V", "")>]
static member AssertEmpty : string * System.Collections.Generic.IDictionary<obj, obj> -> unit

Parameters

message
String
Attributes

Remarks

Asserts that map is empty.

Java documentation for android.test.MoreAsserts.assertEmpty(java.lang.String, java.util.Map<?, ?>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to