File: driver.ads

package info (click to toggle)
libxmlada 18-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,324 kB
  • sloc: ada: 32,766; makefile: 480; xml: 111; sh: 43; python: 35
file content (38 lines) | stat: -rw-r--r-- 1,054 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with DOM.Core;              use DOM.Core;

package Driver is
   procedure Assert_Equals
     (Expected    : DOM_String;
      Actual      : DOM_String;
      Ignore_Case : Boolean;
      File        : String;
      Id          : String);
   procedure Assert_Equals
     (Expected    : DOM_String;
      Actual      : Unbounded_String;
      Ignore_Case : Boolean;
      File        : String;
      Id          : String);
   procedure Assert_Null
     (Actual      : Node;
      File        : String;
      Id          : String);
   procedure Assert_Not_Null
     (Actual      : Node;
      File        : String;
      Id          : String);
   procedure Assert_Not_Null
     (Actual      : Named_Node_Map;
      File        : String;
      Id          : String);
   procedure Assert_False
     (Actual      : Boolean;
      File        : String;
      Id          : String);
   procedure Assert_True
     (Actual      : Boolean;
      File        : String;
      Id          : String);

end Driver;