NUnit Transformation

Return to Introduction  Previous page  Next page

The purpose of the NUnit transformation is to create a class with test methods for all public methods of an existing .Net compatible class.  The resulting class can then be generated and the tests filled out and run by NUnit.

So from the C# model we originally transformed from our PIM:

PSM_CS

We transform to:

psm_nunit

Note that for each class in the C# model, a corresponding test class has been created.  Each of these test classes contains a test method for every public method in the source class, plus the methods required to appropriately set up the tests.  It is your responsibility to fill in the details of each test.

See Also