How to create a method that is not a test method in the Test class?
To create a method that is not a test method, do not decorate it with [TestMethod]. It can be declared as we declare in normal class.
private void ThisIsGoodMethod() { }
This can be called from inside the TestMethod the way it is called from a normal class.
No comments:
Post a Comment