Skip to content

Issue with examples reflective API #199

Open
@JakeGinnivan

Description

@JakeGinnivan
[TestFixture]
    public class ResetScenario
    {
        private Stopwatch _stopwatch;

        public void GivenX(int a)
        {

        }

        public void AndGivenY()
        {

        }

        public void WhenFoo()
        {
        }

        public void ThenWhatever()
        {
        }

        public void AndSomething()
        {
        }

        [Test]
        public void Execute()
        {
            var examples = new ExampleTable("a")
            {
                1,
                2
            };

            this.WithExamples(examples)
                .BDDfy();
        }
    }


Scenario: Reset scenario
    Given x
      And y
    When foo
    Then whatever
      And y
      And something

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions