Skip to content

sournk/mql5-unit-test-library

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UTLibrary-mql5

Unit Test Library for MQL5 programs.

Use

In your script, create a UnitTestsCollection in order to regroup all unitTests.

void OnStart(){
   CUnitTestsCollection utCollection();

   utCollection.AddUnitTests(TestFail());
   utCollection.AddUnitTests(TestSuccess());
}

Then, you can regroup unit tests by themes in functions, in order to add them to the collection.

CUnitTests* TestSuccess(){
   CUnitTests* ut = new CUnitTests("TestSuccess");

   ut.IsFalse(__FILE__, __LINE__, false);
   ...
   ut.IsEquals(__FILE__, __LINE__, "Bonjour", "Bonjour");

   return ut;
}

For more informations, see examples.

Available tests

  • Booleans
    • bool IsTrue(string file, int line, bool result);
    • bool IsFalse(string file, int line, bool result);
  • Strings
    • bool IsEquals(string file, int line, string stringA, string stringB);
    • bool IsNotEquals(string file, int line, double nbrA, double nbrB);
  • Integers
    • bool IsEquals(string file, int line, int nbrA, int nbrB);
  • Doubles
    • bool IsEquals(string file, int line, double nbrA, double nbrB);
    • bool IsNotEquals(string file, int line, double nbrA, double nbrB);
  • Others
    • void SetFalse(string file, int line, string message);

Ameliorations

I will add tests when I need them. Feel free to propose yours.

About

Unit Test Library for MQL5 programs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published