Exemple #1
0
 public void Delete(long key)
 {
     m_service.DeletePreview(key);
 }
 public void DeletePreview_PreviewNotExistis_Exception()
 {
     ExceptionAssert.IsThrowing(new ArgumentException("Preview with key '0' does not exists."), () => {
         m_target.DeletePreview(0);
     });
 }