コード例 #1
0
 public void InsertedGoogleGmailData()
 {
     var gmailTable = new GoogleGmailTable();
     var mail = new GoogleGmailModel
     {
         id = _testMailId
     };
     gmailTable.InsertRow(mail);
     Assert.IsNotNull(gmailTable.GetRow(_testMailId));
 }
コード例 #2
0
 public void UpdateGoogleMailRecord()
 {
     var gmailTable = new GoogleGmailTable();
     var mail = new GoogleGmailModel
     {
         id = _testMailId,
         subject = "testSubject"
     };
     gmailTable.InsertRow(mail);
     Assert.IsNotNull(gmailTable.GetRow(_testMailId));
 }