MoreAsserts.AssertEmpty Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AssertEmpty(IIterable) |
Variant of |
AssertEmpty(IDictionary<Object,Object>) |
Variant of |
AssertEmpty(String, IIterable) |
Asserts that |
AssertEmpty(String, IDictionary<Object,Object>) |
Asserts that |
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
- map
- IDictionary<Object,Object>
- 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.
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
- map
- IDictionary<Object,Object>
- 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.