Ejemplo n.º 1
0
 protected override void Arrange()
 {
     base.Arrange();
     base.Act();
     FileReader.Stub(x => x.ReadAllLines(Path)).Return(strings);
     CodelistFactory.Stub(x => x.SanitizeCodeList(strings.ToList())).Return(Expected);
 }
Ejemplo n.º 2
0
 public void It_Should_Create_List_Wrapper()
 {
     CodelistFactory.AssertWasCalled(x => x.SanitizeCodeList(strings.ToList()));
 }
Ejemplo n.º 3
0
 protected override void Act()
 {
     Sut = new CodelistFactory(EmptyPredicate,CodeFactory);
 }
Ejemplo n.º 4
0
 protected override void Act()
 {
     Sut = new CodelistFactory(EmptyPredicate, CodeFactory);
 }