SysTest::construct Method [AX 2012]

Initializes a new instance of the SysTest class.

Syntax

client server protected static SysTest construct()

Run On

Called

Return Value

Type: SysTest Class
A new instance of the SysTest class.

Remarks

Use the following procedure to customize or extend the SysTest class.

  1. Create a new class that derives from SysTest.

  2. Overlayer the construct method on SysTest so that it returns an instance of the derived class.

  3. Override the methods from the SysTest class that you want to customize or extend in your derived class.

This procedure helps make sure that your customizations are maintained if the base version of the SysTest class is changed, minimizing code conflicts during an upgrade. For more information, see Best Practices for Static Construct Methods.

See Also

SysTest Class

SysTestCase Class

SysTestSuite Class

Unit Test Framework

Walkthrough: Testing a Class Using the Unit Test Framework

Best Practices for Static Construct Methods