blob: bab9efbdf5084d0c1080345c57f30561913ee519 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
using System.Collections.Generic;
using gorilla.infrastructure.container;
using gorilla.infrastructure.registries;
using gorilla.utility;
using Machine.Specifications;
namespace specs.unit.infrastructure.registries
{
[Subject(typeof (DefaultRegistry<int>))]
public class when_retrieving_all_the_items_from_the_default_repository
{
It should_leverage_the_resolver_to_retrieve_all_the_implementations =
() => registry.was_told_to(r => r.get_all<int>());
It should_return_the_items_resolved_by_the_registry = () => result.should_contain(24);
Establish c = () =>
{
var items_to_return = new List<int> {24};
registry = Create.an<DependencyRegistry>();
registry.is_told_to(r => r.get_all<int>()).it_will_return(items_to_return);
sut = create_sut();
};
static Registry<int> create_sut()
{
return new DefaultRegistry<int>(registry);
}
Because b = () =>
{
result = sut.all();
};
static DependencyRegistry registry;
static IEnumerable<int> result;
static Registry<int> sut;
}
}
|