Tagged Questions
The fake-repositories tag has no wiki summary.
7
votes
3answers
547 views
What's the point of testing fake repositories?
I've been trying to push my mentallity when developing at home to be geared more towards TDD and a bit DDD.
One thing I don't understand though is why you would create a fake repository to test ...
2
votes
3answers
558 views
LINQ to SQL: Fake Repository with Many-to-Many Relationships?
I have two tables, Clients and Administrators, which are linked in a many-to-many relationship by the table ClientAdministrators.
In the real application this works fine and I can get a list of ...
0
votes
2answers
61 views
Initialize FakeRepository<> instead of Repository<> using StructureMap
I have the following repository interface
public interface IRepository<TEntity> {
TEntity FindById(int id);
TEntity FindById(long id);
etc
}
I then have the following Repository ...