Ejemplo n.º 1
0
        public void GetCellIds_CreateCellId_True()
        {
            StarterScarfViewModel scarf = new StarterScarfViewModel();
            string result = scarf.GetCellIds(0, 0);

            Assert.AreEqual(result, "cell00");
        }
Ejemplo n.º 2
0
        // GET: /<controller>/
        public IActionResult Index()
        {
            StarterScarfViewModel scarf = new StarterScarfViewModel();

            return(View(scarf));
        }