public void TestAddCategory() { //prepare SubjectModel dut = new SubjectModel(crud); Category category = new Category(); category.Name = "lamas"; category.Active = true; //test bool result = dut.AddCategory(category); //validate Assert.IsTrue(result); }