-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into bug/issue-788-Raise-EventWith-default-constr…
…uctor
- Loading branch information
Showing
107 changed files
with
460 additions
and
1,206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,8 @@ | ||
namespace NSubstitute.Core.Arguments; | ||
|
||
public class AnyArgumentMatcher : IArgumentMatcher | ||
public class AnyArgumentMatcher(Type typeArgMustBeCompatibleWith) : IArgumentMatcher | ||
{ | ||
private readonly Type _typeArgMustBeCompatibleWith; | ||
public override string ToString() => "any " + typeArgMustBeCompatibleWith.GetNonMangledTypeName(); | ||
|
||
public AnyArgumentMatcher(Type typeArgMustBeCompatibleWith) | ||
{ | ||
_typeArgMustBeCompatibleWith = typeArgMustBeCompatibleWith; | ||
} | ||
|
||
public override string ToString() => "any " + _typeArgMustBeCompatibleWith.GetNonMangledTypeName(); | ||
|
||
public bool IsSatisfiedBy(object? argument) => argument.IsCompatibleWith(_typeArgMustBeCompatibleWith); | ||
public bool IsSatisfiedBy(object? argument) => argument.IsCompatibleWith(typeArgMustBeCompatibleWith); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,9 @@ | ||
namespace NSubstitute.Core.Arguments; | ||
|
||
public class DefaultChecker : IDefaultChecker | ||
public class DefaultChecker(IDefaultForType defaultForType) : IDefaultChecker | ||
{ | ||
private readonly IDefaultForType _defaultForType; | ||
|
||
public DefaultChecker(IDefaultForType defaultForType) | ||
{ | ||
_defaultForType = defaultForType; | ||
} | ||
|
||
public bool IsDefault(object? value, Type forType) | ||
{ | ||
return EqualityComparer<object>.Default.Equals(value, _defaultForType.GetDefaultFor(forType)); | ||
return EqualityComparer<object>.Default.Equals(value, defaultForType.GetDefaultFor(forType)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,8 @@ | ||
namespace NSubstitute.Core.Arguments; | ||
|
||
public class EqualsArgumentMatcher : IArgumentMatcher | ||
public class EqualsArgumentMatcher(object? value) : IArgumentMatcher | ||
{ | ||
private readonly object? _value; | ||
public override string ToString() => ArgumentFormatter.Default.Format(value, false); | ||
|
||
public EqualsArgumentMatcher(object? value) | ||
{ | ||
_value = value; | ||
} | ||
|
||
public override string ToString() => ArgumentFormatter.Default.Format(_value, false); | ||
|
||
public bool IsSatisfiedBy(object? argument) => EqualityComparer<object>.Default.Equals(_value, argument); | ||
public bool IsSatisfiedBy(object? argument) => EqualityComparer<object>.Default.Equals(value, argument); | ||
} |
Oops, something went wrong.