gmp_testcase.pas 296 B

1234567891011121314151617181920212223
  1. unit gmp_testcase;
  2. {$mode objfpc}{$H+}
  3. interface
  4. uses
  5. Classes, SysUtils, fpcunit, testregistry;
  6. {$include gmp_test_intf}
  7. implementation
  8. uses
  9. math, strutils, gmp;
  10. {$include gmp_test_impl}
  11. initialization
  12. RegisterTests([TTestGmpBinding, TTestGmpExtensions, TTestGmpOperators]);
  13. end.