Tests.VmFactoryTests.should_create_a_stepVm_from_a_specFlow_step C# (CSharp) Method

should_create_a_stepVm_from_a_specFlow_step() private method

private should_create_a_stepVm_from_a_specFlow_step ( ) : void
return void
        public void should_create_a_stepVm_from_a_specFlow_step()
        {
            // Arrange
            var step = CreateTestStep("Text", StepKeyword.Given);
            // Act
            var vm = StepVm.CreateFromSpecFlowScenario(step);

            // Assert
            vm.Text.Should().Equal("Text");
            vm.StepKeyword.Should().Equal(StepKeyword.Given);
        }