Search Results for

    Show / Hide Table of Contents

    AllItems Constraint

    AllItemsConstraint applies a constraint to each item in an IEnumerable, succeeding only if all of them succeed. An exception is thrown if the actual value passed does not implement IEnumerable.

    Constructor

    AllItemsConstraint(Constraint itemConstraint)
    

    Syntax

    Is.All...
    Has.All...
    

    Examples of Use

    int[] iarray = new int[] { 1, 2, 3 };
    string[] sarray = new string[] { "a", "b", "c" };
    Assert.That(iarray, Is.All.Not.Null);
    Assert.That(sarray, Is.All.InstanceOf<string>());
    Assert.That(iarray, Is.All.GreaterThan(0));
    Assert.That(iarray, Has.All.GreaterThan(0));
    
    • Edit this page
    In this article
    Back to top Generated by DocFX | Copyright (c) 2018- The NUnit Project - Licensed under CC BY-NC-SA 4.0