regarding annotations in c#
In JUnit we are having TESTNG annotations..Whereas in C# what we are using same as TESTNG???
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ShetPosted Jan 13, 2015, 2:47 AM
Are you talking about creating Unit Test class?
In .Net, we use [TestClass] attribute to define testing class & for method we use [TestMethod] attribute.
Hope this answers your query. Plz mark it as answered if it is so.