예제 #1
0
 public void TestDBNotExsist()
 {
     File.Delete(CommonSQL.GetDBFileName());
     CommonSQL.BuildIfNotExsistDB();
     File.Exists(CommonSQL.GetDBFileName());
 }
예제 #2
0
 public void TestDBExsist()
 {
     //Will only pass if database is not present
     CommonSQL.BuildIfNotExsistDB();
 }