CollectionAssert.AllItemsAreNotNull, méthode (ICollection, String)
Vérifie que tous les éléments de la collection spécifiée ne sont pas nullune référence null (Nothing en Visual Basic). L'assertion échoue si un élément est nullune référence null (Nothing en Visual Basic). Affiche un message si l'assertion échoue.
Espace de noms : Microsoft.VisualStudio.TestTools.UnitTesting
Assembly : Microsoft.VisualStudio.QualityTools.UnitTestFramework (dans Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntaxe
'Déclaration
Public Shared Sub AllItemsAreNotNull ( _
collection As ICollection, _
message As String _
)
public static void AllItemsAreNotNull(
ICollection collection,
string message
)
public:
static void AllItemsAreNotNull(
ICollection^ collection,
String^ message
)
static member AllItemsAreNotNull :
collection:ICollection *
message:string -> unit
public static function AllItemsAreNotNull(
collection : ICollection,
message : String
)
Paramètres
collection
Type : ICollectionCollection dans laquelle rechercher des éléments qui sont nullune référence null (Nothing en Visual Basic).
message
Type : StringMessage à afficher si l'assertion échoue. Ce message peut apparaître dans les résultats des tests unitaires.
Exceptions
Exception | Condition |
---|---|
AssertFailedException | Un élément qui est nullune référence null (Nothing en Visual Basic) figure dans collection. |
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.VisualStudio.TestTools.UnitTesting, espace de noms