Beispiel #1
0
        public void PredictionComparisonsController_PreviousComparionsNotNull_True()
        {
            using (var controller = new PredictionComparisonsController())
            {
                var result = controller.AllPreviousComparisons(string.Empty) as ViewResult;

                Assert.IsNotNull(result);
            }
        }
Beispiel #2
0
        public void PredictionComparisonsController_IndexNotNull_True()
        {
            using (var controller = new PredictionComparisonsController())
            {
                var result = controller.Index() as ViewResult;

                Assert.IsNotNull(result);
            }
        }