Loading ...

What Are Asserts In Nunit

Hello everybody, just short notice of NUnit function Assert.That [Test] public void CheckAddition() { Assert.That(CalculatorClass.Minus (5, 2), Is.EqualTo(3)); } public void CheckAddition() { //old styel Assert.AreEqual(3, CalculatorClass.Minus (5, 2)); }  

Acumatica Unit Test

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 {...

Acumatica Unit Test

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 {...