c# - any .net unit test framework supports for nested sections within a function based fixture like C++ Catch framework -
c# - any .net unit test framework supports for nested sections within a function based fixture like C++ Catch framework -
i using c++ unit test framwork named grab https://github.com/philsquared/catch
and think approach easy pick , organize tests:
support nested sections within function based fixtureexample:
scenarios("abc....") { given("xyz") { when("uvt..") { then("erew") { } } and_when("ssd") { then("324") { } } } }
the thing construction is easy reuse setup , back upwards new variations of scenarios (green path vs not greenish path)
so wonder 1 have seen thing other unit test framework in c#. thanks.
answer own question: found njasmine: https://www.nuget.org/packages/njasmine gives me want.
c# c++ try-catch unit-testing
Comments
Post a Comment