Could you please suggest how to orchestrate features - what I meant here is basically I'm expecting how to setup execution order at feature level.
Say for example:
Feature Customer - Execution Order = 1
Feature Order - Execution Order = 2
Feature Supplier - Execution Order = 3
Thanks,
R.Shakthi
--
You received this message because you are subscribed to the Google Groups "SpecFlow" group.
To unsubscribe from this group and stop receiving emails from it, send an email to specflow+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
set__COMPAT_LAYER=RunAsInvoker
@echo off
C:\NUnit\bin\nunit-console-x86.exe /labels /out=TestResult.txt /xml=TestResult.xml "C:\Path\to\VS\generated.dll"
"C:\xxx\packages\SpecFlow.1.9.0\tools\specflow.exe" nunitexecutionreport "C:\xxx\someproject.csproj" /out:"C:\xxx\Desktop\TestResult.html"
if NOT %errorlevel% == 0 (
echo "Error generating report - %errorlevel%"
GOTO :exit
)
if %errorlevel% == 0 C:\xxx\Desktop\TestResult.html"
:exit