CollectionAssert.AllItemsAreInstancesOfType メソッド (ICollection, Type, String, array<Object )
指定されたコレクションのすべての要素が、指定された型のインスタンスであることを検証します。 指定された型を継承階層構造に含んでいない要素がコレクションに存在する場合、アサーションは失敗します。 アサーションが失敗した場合はメッセージを表示し、指定された書式をメッセージに適用します。
名前空間: Microsoft.VisualStudio.TestTools.UnitTesting
アセンブリ: Microsoft.VisualStudio.QualityTools.UnitTestFramework (Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 内)
構文
'宣言
Public Shared Sub AllItemsAreInstancesOfType ( _
collection As ICollection, _
expectedType As Type, _
message As String, _
ParamArray parameters As Object() _
)
public static void AllItemsAreInstancesOfType(
ICollection collection,
Type expectedType,
string message,
params Object[] parameters
)
public:
static void AllItemsAreInstancesOfType(
ICollection^ collection,
Type^ expectedType,
String^ message,
... array<Object^>^ parameters
)
static member AllItemsAreInstancesOfType :
collection:ICollection *
expectedType:Type *
message:string *
parameters:Object[] -> unit
public static function AllItemsAreInstancesOfType(
collection : ICollection,
expectedType : Type,
message : String,
... parameters : Object[]
)
パラメーター
- collection
型: System.Collections.ICollection
検証対象のコレクションです。
- expectedType
型: System.Type
collection のすべての要素の継承階層構造に含まれている必要がある型。
- message
型: System.String
アサーションが失敗した場合に表示されるメッセージです。このメッセージは、単体テストの結果で確認できます。
- parameters
型: array<System.Object[]
message の書式指定時に使用するパラメーターの配列です。
例外
例外 | 条件 |
---|---|
AssertFailedException | collection の要素の 1 つが nullnull 参照 (Visual Basic では Nothing) であるか、collection のいずれかの要素の継承階層構造に expectedType が存在しません。 |
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
参照
AllItemsAreInstancesOfType オーバーロード
Microsoft.VisualStudio.TestTools.UnitTesting 名前空間