Skip to content

Instantly share code, notes, and snippets.

View lucaslra's full-sized avatar

Lucas Araujo lucaslra

View GitHub Profile
@lucaslra
lucaslra / gist:fb39f3afa372d08d8dbd459e269fecb6
Created September 19, 2017 11:36 — forked from Vintharas/gist:bfa5709746f9dbea3794
Mocking IDBSet IQueryable with Moq
using System.Data.Entity;
using System.Linq;
using Moq;
namespace Platform.Domain.Tests.Helpers
{
public class QueryableDbSetMock
{
public static IDbSet<T> GetQueryableMockDbSet<T>(params T[] sourceList) where T : class
{