Skip to content

Commit

Permalink
Add missing assertions in Constants
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Jan 16, 2024
1 parent 6897036 commit 43c6329
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/xunit.analyzers/Utility/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,34 +17,48 @@ public static class AssertArguments
/// </summary>
public static class Asserts
{
public const string All = nameof(All);
public const string AllAsync = nameof(AllAsync);
public const string Collection = nameof(Collection);
public const string CollectionAsync = nameof(CollectionAsync);
public const string Contains = nameof(Contains);
public const string Distinct = nameof(Distinct);
public const string DoesNotContain = nameof(DoesNotContain);
public const string DoesNotMatch = nameof(DoesNotMatch);
public const string Empty = nameof(Empty);
public const string EndsWith = nameof(EndsWith);
public const string Equal = nameof(Equal);
public const string Equivalent = nameof(Equivalent);
public const string Fail = nameof(Fail);
public const string False = nameof(False);
public const string InRange = nameof(InRange);
public const string IsAssignableFrom = nameof(IsAssignableFrom);
public const string IsNotAssignableFrom = nameof(IsNotAssignableFrom);
public const string IsNotType = nameof(IsNotType);
public const string IsType = nameof(IsType);
public const string Matches = nameof(Matches);
public const string Multiple = nameof(Multiple);
public const string NotEmpty = nameof(NotEmpty);
public const string NotEqual = nameof(NotEqual);
public const string NotInRange = nameof(NotInRange);
public const string NotNull = nameof(NotNull);
public const string NotSame = nameof(NotSame);
public const string NotStrictEqual = nameof(NotStrictEqual);
public const string Null = nameof(Null);
public const string ProperSubset = nameof(ProperSubset);
public const string ProperSuperset = nameof(ProperSuperset);
public const string PropertyChanged = nameof(PropertyChanged);
public const string PropertyChangedAsync = nameof(PropertyChangedAsync);
public const string Raises = nameof(Raises);
public const string RaisesAny = nameof(RaisesAny);
public const string RaisesAnyAsync = nameof(RaisesAnyAsync);
public const string RaisesAsync = nameof(RaisesAsync);
public const string Same = nameof(Same);
public const string Single = nameof(Single);
public const string StartsWith = nameof(StartsWith);
public const string StrictEqual = nameof(StrictEqual);
public const string Subset = nameof(Subset);
public const string Superset = nameof(Superset);
public const string Throws = nameof(Throws);
public const string ThrowsAny = nameof(ThrowsAny);
public const string ThrowsAnyAsync = nameof(ThrowsAnyAsync);
Expand Down

0 comments on commit 43c6329

Please sign in to comment.