public void GetNotificationByIdTest()
        {
            RawNotificationDB db = new RawNotificationDB();
            var noti             = db.NotificationDA.GetNotificationById(10048);

            Assert.IsNotNull(noti);
        }
 public void GetReceiverByIdTest()
 {
     using (RawNotificationDB db = new RawNotificationDB())
     {
         var reveiver = db.ReceiverDA.GetReceiverById(9999);
     }
 }
示例#3
0
 public void InsertDeviceTest()
 {
     RawNotificationDB db = new RawNotificationDB();
 }