Fluent Assertions Documentation
FluentAssertions Namespace / CallerIdentifier Class / DetermineCallerIdentities Method
Example
In This Topic
    DetermineCallerIdentities Method
    In This Topic
    Gets all identifiers of all assertions in order of appearance.
    Syntax
    public static string[] DetermineCallerIdentities()
    Example
    For example, given the following code DetermineCallerIdentity will return collection, Parameters and an empty string.
    collection.Should().ContainSingle()
                    .Which.Parameters.Should().ContainSingle()
                    .Which.Should().Be(3)
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also