예제 #1
0
        public void DeleteTestMethod()
        {
            var solutionRepository = new SolutionRepository();

            var solution = solutionRepository.Get(2);

            solutionRepository.Remove(solution);

            solution = solutionRepository.Get(2);

            Assert.IsNull(solution);
        }