PreviousUpNext

15.4.1023  src/lib/src/unt-red-black-map-unit-test.pkg

## unt-red-black-map-unit-test.pkg

# Compiled by:
#     src/lib/test/unit-tests.lib

# Run by:
#     src/lib/test/all-unit-tests.pkg



package unt_red_black_map_unit_test {

    include package   unit_test;                                                # unit_test                     is from   src/lib/src/unit-test.pkg

    include package   unt_red_black_map;

    name =  "src/lib/src/unt-red-black-map-unit-test.pkg unit tests";

    fun run ()
        =
        {

            printf "\nDoing %s:\n" name;

            my limit = 100;

        # debug_print (m, printf "%d", printf "%d");

            # Create a map by successive appends:
            #
            my test_map
                =
                for (m = empty, i = 0;  i < limit;  ++i; m) {

                    m = set (m, unt::from_int i, i);
                    assert (all_invariants_hold   m);
                    assert (not (is_empty m));
                    assert (the (first_val_else_null m) == 0);
                    assert (     vals_count m  == i+1);

                    assert (#1 (the (first_keyval_else_null m)) == unt::from_int 0);
                    assert (#2 (the (first_keyval_else_null m)) ==               0);

                };

            # Check resulting map's contents:
            #
            for (i = 0;  i < limit;  ++i) {
                assert ((the (get (test_map, unt::from_int i))) == i);
            };

            # Try removing at all possible positions in map:
            #
            for (map' = test_map, i = 0;   i < limit;   ++i) {
                #
                map'' =  drop (map', unt::from_int i);

                assert  (all_invariants_hold  map'');
            };

            assert (is_empty empty);

            summarize_unit_tests  name;
        };      
};


Comments and suggestions to: bugs@mythryl.org

PreviousUpNext