1
2
3
4
5
6
7
8
9
|
------------------------------------------------------------------------------
-- Copyright (c) 2016, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
|
|
|
1
2
3
4
5
6
7
8
9
|
------------------------------------------------------------------------------
-- Copyright (c) 2016-2017, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package Natools.Smaz_Tests is
package NT renames Natools.Tests;
procedure All_Tests (Report : in out NT.Reporter'Class);
procedure All_Tests_256 (Report : in out NT.Reporter'Class);
procedure All_Tests_64 (Report : in out NT.Reporter'Class);
procedure Sample_Strings_256 (Report : in out NT.Reporter'Class);
procedure Test_Validity_256 (Report : in out NT.Reporter'Class);
procedure Sample_Strings_64 (Report : in out NT.Reporter'Class);
procedure Sample_Strings_VLV_64 (Report : in out NT.Reporter'Class);
procedure Test_Validity_64 (Report : in out NT.Reporter'Class);
end Natools.Smaz_Tests;
|
>
>
>
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
package Natools.Smaz_Tests is
package NT renames Natools.Tests;
procedure All_Tests (Report : in out NT.Reporter'Class);
procedure All_Tests_256 (Report : in out NT.Reporter'Class);
procedure All_Tests_4096 (Report : in out NT.Reporter'Class);
procedure All_Tests_64 (Report : in out NT.Reporter'Class);
procedure Sample_Strings_256 (Report : in out NT.Reporter'Class);
procedure Test_Validity_256 (Report : in out NT.Reporter'Class);
procedure Test_Validity_4096 (Report : in out NT.Reporter'Class);
procedure Sample_Strings_64 (Report : in out NT.Reporter'Class);
procedure Sample_Strings_VLV_64 (Report : in out NT.Reporter'Class);
procedure Test_Validity_64 (Report : in out NT.Reporter'Class);
end Natools.Smaz_Tests;
|