This is a great project, but the tests are hard-coded to use a specific Repository rather than using the same logic stored within the application that relies on Unity to inject the type of Repository. This is what I am after: My logic for Unity type injection should be the same for my tests as for my application, but I should be able to configure them differently using Unity configuration sections.
After seeing this project's implementation, I am resolved to the fact that I will need to create my own singleton for storing and managing a reference to the UnityContainer and will need to reference this object in both my tests and application.
If done right, I suppose I could be a ridiculous developer and try to make my application IOC container agnostic; swapping out any IOC framework! An IOC for IOC frameworks? LOL! No... I have work to do.