public void Search_PatronTitle_FoundPatronInDatabase() { //Arrange Patron testPatron1 = new Patron("example patron1"); testPatron1.Save(); Patron testPatron2 = new Patron("example patron2"); testPatron2.Save(); //Act Patron result = Patron.Search(testPatron2.GetName()); //Assert Assert.Equal(testPatron2, result); }