Assert.AssertAreEqualInterpolatedStringHandler<TArgument> コンストラクター

定義

オーバーロード

Assert.AssertAreEqualInterpolatedStringHandler<TArgument>(Int32, Int32, IEquatable<TArgument>, IEquatable<TArgument>, Boolean)

ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
public AssertAreEqualInterpolatedStringHandler(int literalLength, int formattedCount, IEquatable<TArgument>? expected, IEquatable<TArgument>? actual, out bool shouldAppend);
new Microsoft.VisualStudio.TestTools.UnitTesting.Assert.AssertAreEqualInterpolatedStringHandler<'Argument> : int * int * IEquatable<'Argument> * IEquatable<'Argument> * bool -> Microsoft.VisualStudio.TestTools.UnitTesting.Assert.AssertAreEqualInterpolatedStringHandler<'Argument>
Public Sub New (literalLength As Integer, formattedCount As Integer, expected As IEquatable(Of TArgument), actual As IEquatable(Of TArgument), ByRef shouldAppend As Boolean)

パラメーター

literalLength
Int32
formattedCount
Int32
expected
IEquatable<TArgument>
actual
IEquatable<TArgument>
shouldAppend
Boolean

適用対象

Assert.AssertAreEqualInterpolatedStringHandler<TArgument>(Int32, Int32, TArgument, TArgument, Boolean)

ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.InterpolatedStringHandlers.cs

Assert.AssertAreEqualInterpolatedStringHandler<TArgument> 構造体の新しいインスタンスを初期化します。

public AssertAreEqualInterpolatedStringHandler(int literalLength, int formattedCount, TArgument expected, TArgument actual, out bool shouldAppend);
public AssertAreEqualInterpolatedStringHandler(int literalLength, int formattedCount, TArgument? expected, TArgument? actual, out bool shouldAppend);
new Microsoft.VisualStudio.TestTools.UnitTesting.Assert.AssertAreEqualInterpolatedStringHandler<'Argument> : int * int * 'Argument * 'Argument * bool -> Microsoft.VisualStudio.TestTools.UnitTesting.Assert.AssertAreEqualInterpolatedStringHandler<'Argument>
Public Sub New (literalLength As Integer, formattedCount As Integer, expected As TArgument, actual As TArgument, ByRef shouldAppend As Boolean)

パラメーター

literalLength
Int32

挿入文字列内の定数文字の数。

formattedCount
Int32

補間文字列内の補間式の数。

expected
TArgument

アサートされる予期される値。

actual
TArgument

アサートされる実際の値。

shouldAppend
Boolean

このメソッドから制御が戻るときに、補間された文字列を評価するかどうかを示します。

適用対象

Assert.AssertAreEqualInterpolatedStringHandler<TArgument>(Int32, Int32, TArgument, TArgument, IEqualityComparer<TArgument>, Boolean)

ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.cs
ソース:
Assert.AreEqual.InterpolatedStringHandlers.cs

Assert.AssertAreEqualInterpolatedStringHandler<TArgument> 構造体の新しいインスタンスを初期化します。

public AssertAreEqualInterpolatedStringHandler(int literalLength, int formattedCount, TArgument expected, TArgument actual, System.Collections.Generic.IEqualityComparer<TArgument>? comparer, out bool shouldAppend);
public AssertAreEqualInterpolatedStringHandler(int literalLength, int formattedCount, TArgument? expected, TArgument? actual, System.Collections.Generic.IEqualityComparer<TArgument>? comparer, out bool shouldAppend);
new Microsoft.VisualStudio.TestTools.UnitTesting.Assert.AssertAreEqualInterpolatedStringHandler<'Argument> : int * int * 'Argument * 'Argument * System.Collections.Generic.IEqualityComparer<'Argument> * bool -> Microsoft.VisualStudio.TestTools.UnitTesting.Assert.AssertAreEqualInterpolatedStringHandler<'Argument>
Public Sub New (literalLength As Integer, formattedCount As Integer, expected As TArgument, actual As TArgument, comparer As IEqualityComparer(Of TArgument), ByRef shouldAppend As Boolean)

パラメーター

literalLength
Int32

挿入文字列内の定数文字の数。

formattedCount
Int32

補間文字列内の補間式の数。

expected
TArgument

アサートされる予期される値。

actual
TArgument

アサートされる実際の値。

comparer
IEqualityComparer<TArgument>

値の比較に使用される等値比較子。

shouldAppend
Boolean

このメソッドから制御が戻るときに、補間された文字列を評価するかどうかを示します。

適用対象