public void cannot_construct_with_null_category() { var faq = new Faq(null, "Question", "Answer","",""); }
public void cannot_construct_with_null_question() { var faq = new Faq(_category, null, "Answer", "", ""); }
public void cannot_construct_with_null_answer() { var faq = new Faq(_category, "Question", null,"",""); }