Example: Production Test
Use Atelier to create the class for testing the production:
-
Click File > New > Class File and under the General heading click Empty Class.
-
Verify that you are adding the class to the correct project.
-
Add the following configuration:
-
Package: Tutorial
-
Name: ProductionTest
-
Extends: %UnitTest.TestProduction
-
-
Add the following parameter declarations to the class:
Parameter PRODUCTION = "Tutorial.ExampleProduction";
Parameter IGNOREPRODUCTIONERRORS = 1;
-
The class should look like the following:
Class Tutorial.ProductionTest Extends %UnitTest.TestProduction { Parameter PRODUCTION = "Tutorial.ExampleProduction"; Parameter IGNOREPRODUCTIONERRORS = 1; }