summaryrefslogtreecommitdiff
path: root/test/graph_tests-basic.ads
blob: 80fb05dda89561d64de403c3f1e11569a785e5bd (plain)
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


with Unit_Tests;
use Unit_Tests;


package Graph_Tests.Basic is


    function To_Graph_Check return Test_Result;
    function Is_Empty_Check return Test_Result;
    function Clear_Check return Test_Result;
    function Cursor_Element_Check return Test_Result;


    Tests : Test_Array :=
       ((+"To_Graph", To_Graph_Check'Access),
        (+"Is_Empty", Is_Empty_Check'Access),
        (+"Clear", Clear_Check'Access),
        (+"To_Cursor, Has_Element, Element", Cursor_Element_Check'Access));


end Graph_Tests.Basic;