Skip to content

Support TestCase(parameter)? #106

Description

@Dre-Tas

Hey everyone,

I just realised that RTF doesn't take into consideration my "data driven" test (https://docs.nunit.org/2.5/testCase.html)? Am I missing something or is this actually the way it is?

You know when in unit testing you write the test but you want to run it with multiple inputs like this:

        [**TestCase**(@"C:\RootFolder\FirstChild\AnotherFolder")]
        [**TestCase**(@"P:\Folder\1234")]
        public void ValidateTrueWhenMatching(string path)
        {
            // Arrange
            var model= new Model { FilePath = path };

            // Act
            FilePathRule sut = new FilePathRule(model.FilePath);

            // Assert
            Assert.True(sut.IsValid());
        }

Is there a way to do this?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions