BananaHook.Specs.describe_IHook.when_the_hooked_function_is_called C# (CSharp) Метод

when_the_hooked_function_is_called() приватный Метод

private when_the_hooked_function_is_called ( ) : void
Результат void
        void when_the_hooked_function_is_called()
        {
            act = () => _result = _subject.Managed(2.0);

            context["and the hook was applied"] = () =>
            {
                before = () =>
                {
                    _hook.Apply();
                    GC.Collect();
                };

                it["should call the hook function"] = () => _result.should_be(1);
                it["should be applied"] = () => _hook.IsApplied.should_be_true();

                context["and then removed again"] = () =>
                {
                    before = () => _hook.Remove();

                    it["should call the original function"] = () => _result.should_be(2);
                    it["should not be applied"] = () => _hook.IsApplied.should_be_false();
                };
            };

            after = () => _hook.Dispose();
        }