1
2
3
4
5
6
7
8
9
|
------------------------------------------------------------------------------
-- Copyright (c) 2014, 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) 2014-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 --
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
procedure All_Tests (Report : in out NT.Reporter'Class);
procedure Atom_Encodings (Report : in out NT.Reporter'Class);
procedure Base64_Subexpression (Report : in out NT.Reporter'Class);
procedure Canonical_Encoding (Report : in out NT.Reporter'Class);
procedure Lockable_Interface (Report : in out NT.Reporter'Class);
procedure Locked_Next (Report : in out NT.Reporter'Class);
procedure Nested_Subpexression (Report : in out NT.Reporter'Class);
procedure Number_Prefixes (Report : in out NT.Reporter'Class);
procedure Quoted_Escapes (Report : in out NT.Reporter'Class);
procedure Reset (Report : in out NT.Reporter'Class);
procedure Special_Subexpression (Report : in out NT.Reporter'Class);
end Natools.S_Expressions.Parsers.Tests;
|
>
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
procedure All_Tests (Report : in out NT.Reporter'Class);
procedure Atom_Encodings (Report : in out NT.Reporter'Class);
procedure Base64_Subexpression (Report : in out NT.Reporter'Class);
procedure Canonical_Encoding (Report : in out NT.Reporter'Class);
procedure Lockable_Interface (Report : in out NT.Reporter'Class);
procedure Locked_Next (Report : in out NT.Reporter'Class);
procedure Memory_Parser (Report : in out NT.Reporter'Class);
procedure Nested_Subpexression (Report : in out NT.Reporter'Class);
procedure Number_Prefixes (Report : in out NT.Reporter'Class);
procedure Quoted_Escapes (Report : in out NT.Reporter'Class);
procedure Reset (Report : in out NT.Reporter'Class);
procedure Special_Subexpression (Report : in out NT.Reporter'Class);
end Natools.S_Expressions.Parsers.Tests;
|