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;
|