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