Example #1
0
 public void cannot_construct_with_null_category()
 {
     var faq = new Faq(null, "Question", "Answer","","");
 }
Example #2
0
 public void cannot_construct_with_null_question()
 {
     var faq = new Faq(_category, null, "Answer", "", "");
 }
Example #3
0
 public void cannot_construct_with_null_answer()
 {
     var faq = new Faq(_category, "Question", null,"","");
 }