Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クラスの単体テストを書いています。クラスのメソッドのいくつかはIQueryableオブジェクトをパラメーターとして受け取り、それらのメソッドに渡されるオブジェクトをモックしたいと思います。実装するC#に組み込まれているコレクションはありますIQueryableか?そうでない場合、どうすればこれらのオブジェクトをモックできますか?
IQueryable
を使用するだけIEnumerable<T>.AsQueryable()です。IEnumerable<T>好きな実装者を使用してください。
IEnumerable<T>.AsQueryable()
IEnumerable<T>