SysTestAssert.assertEquals Method [AX 2012]

Checks whether two values are equal.

Syntax

public void assertEquals(
    anytype _expected, 
    anytype _actual, 
   [str _message])

Run On

Called

Parameters

  • _expected
    Type: anytype
    The expected value.
  • _actual
    Type: anytype
    The actual value.
  • _message
    Type: str
    An error message logged when the assertion test fails; optional.

Remarks

To use this method, create a class that extends the SysTestCase class and then add a method to provide your test logic. For an example of how to use the assertEquals method, see How to: Create a Test Case.

You cannot pass null Nothing nullptr unit a null reference (Nothing in Visual Basic) to this method.

See Also

SysTestAssert Class

SysTestCase Class

Unit Test Framework

Walkthrough: Testing a Class Using the Unit Test Framework