Example #1
0
 public static void SetUp(TestContext _context)
 {
     // Pass the name of the connection string TAG not the
     // name of the database you want to use
     repo = new EventRepository("Name=TestDB");
     repo.Clear();
 }
 public static void CleanUp()
 {
     repo.Clear();
     repo.Dispose();
 }
 public static void SetUp(TestContext _context)
 {
     repo = new EventRepository();
     repo.Clear();
 }
Example #4
0
 public static void CleanUp()
 {
     repo.Clear();
 }
Example #5
0
 private void Reset_Click(object sender, RoutedEventArgs e)
 {
     repo.Clear();
 }
Example #6
0
 public static void CleanThisUp()
 {
     window.Close();
     application.Close();
     repo.Clear();
 }