mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
21 lines
No EOL
779 B
C#
21 lines
No EOL
779 B
C#
using System;
|
|
using Xunit.Sdk;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace Xunit;
|
|
|
|
public partial class Assert
|
|
{
|
|
/// <summary>
|
|
/// Verifies that two spans are equal, using a default comparer.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the objects to be compared</typeparam>
|
|
/// <param name="expected">The expected value</param>
|
|
/// <param name="actual">The value to be compared against</param>
|
|
/// <exception cref="EqualException">Thrown when the objects are not equal</exception>
|
|
public static void Equal<T>(ReadOnlySpan<T> expected, ReadOnlySpan<T> actual) where T : unmanaged, IEquatable<T>
|
|
{
|
|
if (!expected.SequenceEqual(actual))
|
|
throw new EqualException(expected.ToArray(), actual.ToArray());
|
|
}
|
|
} |