Skip to content

Instantly share code, notes, and snippets.

View mvrmoreira's full-sized avatar

Matheus Moreira mvrmoreira

View GitHub Profile
@mvrmoreira
mvrmoreira / DbSetMock.cs
Last active August 29, 2015 14:20
DbSetMock
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.Entity;
using System.Linq;
using System.Linq.Expressions;
namespace Billing.Tests.Models
{
public class DbSetMock<T> : DbSet<T>, IQueryable, IEnumerable<T>