Reputation: 613
Can anyone assist me in writing Unit Tests in AX. Points like
And all basic things that should be kept in mind while writing test class.
Upvotes: 0
Views: 666
Reputation: 18051
The use of Unit Test
in AX, take a look here:
What conditions do you need to cover? Well, depends, but you should probably aim high on test coverage.
Assertions are conditions you would consider true like:
this.assertEquals(10, 7+3);
Usually you would test variable or return values.
Upvotes: 2