summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/gmp/examples/gmp_testcase.pas
blob: 4dbc445a444acf7ece385632c5fdfc91aefbf1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
unit gmp_testcase;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, fpcunit, testregistry;

{$include gmp_test_intf}

implementation

uses
  math, strutils, gmp;

{$include gmp_test_impl}

initialization
  RegisterTests([TTestGmpBinding, TTestGmpExtensions, TTestGmpOperators]);

end.