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 fixture

example:

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

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -