public void WhenAnExplicitBaseMethodIsCalledWithinTheEntrypoint()
        {
            Gherkin gherkin = new PickyGherkin();

            // The OnWater will make a base call with the "base." identifier
            gherkin.OnWater(new WaterEventArgs());
        }
예제 #2
0
        public void WhenAnInheritedInstanceMethodIsInvokedIndirectly()
        {
            PickyGherkin gherkin = new PickyGherkin();

            PrepareAndCutVine(gherkin);
        }