Example #1
0
 public void ProcessProduct_M2ORelation_DeleteReference()
 {
     SetupM2ORelation(null, DeletingMode.Delete);
     Assert.IsFalse(Articles.Any());
 }
Example #2
0
 public static bool IsArticle(string article)
 {
     return(Articles.Any(a => a.Word == article.ToLower()));
 }
Example #3
0
 public void ProcessProduct_NoRelations_Archive()
 {
     SetupNoRelation();
     Assert.IsFalse(Articles.Any());
 }