public void PBScrape_RetrievedURLSInList_NotEqualToZero() { //Arrange string Keyword = "Sandwhich"; PBScrape newScrape = new PBScrape(Keyword); //Act newScrape.GetGoogleResults(newScrape.GetKeyword()); List <string> urlList = newScrape.GetUrls(); //Assert Assert.AreNotEqual(0, urlList); }