public void TestSelectiveHook()
        {
            ITestService test = Simply.Do[ConfigKey].Resolve <ITestService>();

            test.ReturnString().Should().Not.Be("123456");

            IOtherService other = Simply.Do[ConfigKey].Resolve <IOtherService>();

            other.ReturnString().Should().Be("123456");
        }