public void ConstructorInitializedCorrectly() { Assert.DoesNotThrow(() => this.database = new DataBasePerson(this.people), "Constructor should not throw an exception!"); }
public void InitializeBeforeEachTest() { this.database = new DataBasePerson(this.people); }