public async Task Test_TestGetMethod()
        {
            var messageSession   = new NServiceBus.Testing.TestableMessageSession();
            var sampleController = new SampleController(messageSession);
            var values           = await sampleController.GetSomeValues();

            Assert.AreEqual("testGet", values);
        }