SpecFirst.TestGenerator.xUnit is the test generator part of the SpecFirst source generator. It is reponsible for genrating xUnit tests from the decision table objects (e.g. it takes the DecisionTable object generated by the MarkdownParser and converts it into xUnit tests).
To see how SpecFirst.TestGenerator.xUnit should be used, see How to use it
To see how the SpecFirst source generator works, see SpecFirst
SpecFirst.TestGenerator.xUnit test generator implements the ITestsGenerator interface from SpecFirst.Core package.
The SpecFirst.TestGenerator.xUnit nuget package must be installed into the same project as the SpecFirst nuget package.
You can write your own test generator to generate tests in any target framework. Your custom generator must also implement the ITestsGenerator interface from SpecFirst.Core package and should be used in the same way as the SpecFirst.TestGenerator.xUnit generator