Hello everybody,
today I want to show to unit test, and I mean really unit test SOOrderEntry graph extnesion in Acumatica with XUnit.
In order to achieve it, you'll need following steps:
Create .Net Class library
Reference xUnit
Create public class that inherits from TestBase class
Add override...
Hello everybody,
today I want to make another description of how to cover with Unit Tests Graphs in Acumatica.
First of all I want to say that Acumatica controllers or as Acumatica names them graphs do not have any way to inject any dependency from interface. In such case it can be useful i...
Hello everybody,
today I want to write few words about Moq and unit testing.
First of all you can have a question, why do I need Moq at all?
Moq is especially useful for cases if we don't have desire to code interface, then code implementation of interface, and then code fake implementation...
Hello readers of mine blog.
Today I want to share with everybody who wants to make unit test of Acumatica how I achieved it.
For unit testing I use NUnit. In order to start my work with Acumatica Unit testing I wrote the following class:
[TestFixture]
public class CATranEntryExtTest
{...
Hello readers of mine blog.
Today I want to share with everybody who wants to make unit test of Acumatica how I achieved it.
For unit testing I use NUnit. In order to start my work with Acumatica Unit testing I wrote the following class:
[TestFixture]
public class CATranEntryExtTest
{...