public void WhenIPerformASimpleSearchOn(string searchTerm)
 {
     var controller = new CatalogController();
     actionResult = controller.Search(searchTerm);
 }
 public void WhenISearchForBooksByThePhrase(string searchTerm)
 {
     var controller = new CatalogController();
     actionResult = controller.Search(searchTerm);
 }