27 references to verify
Microsoft.DotNet.XUnitAssert.Tests (27)
StringAssertsTests.cs (27)
460 verify(() => Assert.EndsWith("hey", "Hello, world!")); 462 verify(() => Assert.EndsWith("hey".Memoryify(), "Hello, world!".Memoryify())); 463 verify(() => Assert.EndsWith("hey".AsMemory(), "Hello, world!".Memoryify())); 464 verify(() => Assert.EndsWith("hey".Memoryify(), "Hello, world!".AsMemory())); 465 verify(() => Assert.EndsWith("hey".AsMemory(), "Hello, world!".AsMemory())); 466 verify(() => Assert.EndsWith("hey".Spanify(), "Hello, world!".Spanify())); 467 verify(() => Assert.EndsWith("hey".AsSpan(), "Hello, world!".Spanify())); 468 verify(() => Assert.EndsWith("hey".Spanify(), "Hello, world!".AsSpan())); 469 verify(() => Assert.EndsWith("hey".AsSpan(), "Hello, world!".AsSpan())); 489 verify(() => Assert.EndsWith("WORLD!", "world!")); 491 verify(() => Assert.EndsWith("WORLD!".Memoryify(), "world!".Memoryify())); 492 verify(() => Assert.EndsWith("WORLD!".AsMemory(), "world!".Memoryify())); 493 verify(() => Assert.EndsWith("WORLD!".Memoryify(), "world!".AsMemory())); 494 verify(() => Assert.EndsWith("WORLD!".AsMemory(), "world!".AsMemory())); 495 verify(() => Assert.EndsWith("WORLD!".Spanify(), "world!".Spanify())); 496 verify(() => Assert.EndsWith("WORLD!".AsSpan(), "world!".Spanify())); 497 verify(() => Assert.EndsWith("WORLD!".Spanify(), "world!".AsSpan())); 498 verify(() => Assert.EndsWith("WORLD!".AsSpan(), "world!".AsSpan())); 551 verify(() => Assert.EndsWith(expected, actual)); 553 verify(() => Assert.EndsWith(expected.Memoryify(), actual.Memoryify())); 554 verify(() => Assert.EndsWith(expected.AsMemory(), actual.Memoryify())); 555 verify(() => Assert.EndsWith(expected.Memoryify(), actual.AsMemory())); 556 verify(() => Assert.EndsWith(expected.AsMemory(), actual.AsMemory())); 557 verify(() => Assert.EndsWith(expected.Spanify(), actual.Spanify())); 558 verify(() => Assert.EndsWith(expected.AsSpan(), actual.Spanify())); 559 verify(() => Assert.EndsWith(expected.Spanify(), actual.AsSpan())); 560 verify(() => Assert.EndsWith(expected.AsSpan(), actual.AsSpan()));