RevitTestFramework icon indicating copy to clipboard operation
RevitTestFramework copied to clipboard

Support TestCase(parameter)?

Open Dre-Tas opened this issue 5 years ago • 0 comments

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?

Dre-Tas avatar Oct 27 '20 01:10 Dre-Tas