コード例 #1
0
        // GET: Home
        public ActionResult Index()
        {
            var repo  = new FakeContactRepository();
            var model = repo.GetAll();

            return(View(model));
        }
コード例 #2
0
 public void Dada_a_consulta_deve_retornar_os_contatos()
 {
     Assert.IsTrue(_contactRepo.GetAll().Count() > 0);
 }