public void can_initialize()
 {
     using (var dbContext = new StacksOfWaxDbContext())
     {
         Assert.IsTrue(dbContext.Artists.Any());
     }
 }
Ejemplo n.º 2
0
 public void CanInitialize()
 {
     using (var db = new StacksOfWaxDbContext())
     {
         Assert.IsTrue(db.Artists.Any());
         Assert.IsTrue(db.Albums.Any());
     }
 }