public void GetAllChirpsTest()
 {
     IChirpyRRepository repository = new ChirpyRSqlRepository("ChirpyRConnection", "dbo");
     ChirpyRDataService target = new ChirpyRDataService(repository);
     IList<Chirp> expected = null; // TODO: Initialize to an appropriate value
     IList<Chirp> actual;
     actual = target.GetAllChirps();
     Assert.AreNotEqual(expected, actual);
 }