public void WhenAPersonIsFoundThenThePersonsNameIsIncluded() { Person foundPerson = new Person(); foundPerson.Name = "Bob"; Greeter greeter = new TestingGreeter(foundPerson); string helloResult = greeter.SayHello(1); Assert.That(helloResult, Is.EqualTo("Hello, Bob!")); }
public FakeDataAccessAdapter(Person foundPerson) { _foundPerson = foundPerson; }