예제 #1
0
        public void GetPath_ProvideAllParams_ConfirmReturn()
        {
            ActionResult <string> okResult;

            okResult = Controller.Get("Source", "Destination");
            Assert.IsType <string>(okResult.Value);
            Assert.True(okResult.Value == "Success");
        }