Ejemplo n.º 1
0
        public void InsertTest()
        {
            int id = raceTypeDao.Insert(new RaceType()
            {
                Type         = "HugoHillNew",
                NumberOfRuns = 2
            });

            Assert.True(raceTypeDao.FindById(id).Id == id);
        }