Package: Ahven.Listeners.Basic

Dependencies

with Ada.Strings.Unbounded;

use Ada.Strings.Unbounded;

Description

Copyright (c) 2007, 2008 Tero Koskinen <tero.koskinen@iki.fi>

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 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.


Header

package Ahven.Listeners.Basic is
 

Type Summary

Basic_Listener derived from Result_Listener
Overridden Operations:  Add_Error, Add_Failure, Add_Pass, End_Test, Start_Test
Inherited Operations:  Finalize, Initialize
Basic_Listener_Class_Access
Result_Type

Other Items:

type Result_Type is (NO_RESULT, PASS_RESULT, FAILURE_RESULT, ERROR_RESULT);

type Basic_Listener is new Result_Listener with record
   Main_Result       : Result_Collection;
   Current_Result    : Result_Collection_Access;
   Last_Test_Result  : Result_Type      := NO_RESULT;
   Last_Test_Message : Unbounded_String := Null_Unbounded_String;
   Last_Test_Long_Message : Unbounded_String := Null_Unbounded_String;
end record;

type Basic_Listener_Class_Access is access Basic_Listener'Class;

function Create return Basic_Listener_Class_Access;
Create a new Basic_Listener

procedure Free (Listener : in out Basic_Listener_Class_Access);
Release created Basic_Listener.

procedure Add_Pass (Listener : in out Basic_Listener;
                    Info     :        Result_Info);
New implementation for Listeners.Add_Pass

procedure Add_Failure (Listener : in out Basic_Listener;
                       Info     :        Result_Info);
New implementation for Listeners.Add_Failure

procedure Add_Error (Listener : in out Basic_Listener;
                     Info     :        Result_Info);
New implementation for Listeners.Add_Error

procedure Start_Test (Listener : in out Basic_Listener;
                      Info     :        Result_Info);
New implementation for Listeners.Start_Test

procedure End_Test (Listener : in out Basic_Listener;
                    Info     :        Result_Info);
New implementation for Listeners.End_Test

private

   --  Implementation-defined ...
end Ahven.Listeners.Basic;