mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-30 06:05:24 +02:00
24 lines
296 B
ObjectPascal
24 lines
296 B
ObjectPascal
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.
|
|
|