10 references to FormatStart
Microsoft.DotNet.XUnitAssert.Tests (4)
Asserts\Sdk\CollectionTrackerTests.cs (4)
209 Assert.Equal("[]", CollectionTracker<object>.FormatStart(span)); 217 Assert.Equal($"[{ArgumentFormatter.Ellipsis}]", CollectionTracker<object>.FormatStart(span, ArgumentFormatter.MaxEnumerableLength + 1)); 225 Assert.Equal($"[1, {2.3M}, \"Hello, world!\"]", CollectionTracker<object>.FormatStart(span)); 233 Assert.Equal($"[1, {2.3M}, \"Hello, world!\", 42, 2112, {ArgumentFormatter.Ellipsis}]", CollectionTracker<object>.FormatStart(span));
xunit.assert (6)
MemoryAsserts.cs (3)
72 CollectionTracker<T>.FormatStart(expectedSubMemory.Span), 73 CollectionTracker<T>.FormatStart(actualMemory.Span) 132 var formattedExpected = CollectionTracker<T>.FormatStart(expectedSpan);
SpanAsserts.cs (3)
70 CollectionTracker<T>.FormatStart(expectedSubSpan), 71 CollectionTracker<T>.FormatStart(actualSpan) 125 var formattedExpected = CollectionTracker<T>.FormatStart(expectedSubSpan);