public void Test_BaseApiController_GetDefault()
        {
            // Setup/
            BaseApiController controllerUnderTest = new BaseApiController();

            // Test the Controller method.
            string response = controllerUnderTest.Get();

            // Is the output as we expected.
            if (string.IsNullOrEmpty(response))
            {
                Assert.Fail("No response from Controller.");
            }
        }
        public void Test_BaseApiController_GetWithId()
        {
            // Setup.
            int idParameter = 7;
            BaseApiController controllerUnderTest = new BaseApiController();

            // Test the Controller method.
            string response = controllerUnderTest.Get(idParameter);

            // Does the output contain what we expected, roughly as text-text doesn't really matter, just that it incorperate the Id back.
            if (!response.Contains(idParameter.ToString()))
            {
                Assert.Fail("Controller failed to incorperate the parameter in the response.");
            }
        }