Changeset 0fe0f32 in mainline


Ignore:
Timestamp:
2018-07-05T21:41:23Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b7cc0a9
Parents:
21d97e8
git-author:
Dzejrou <dzejrou@…> (2018-05-14 17:55:26)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:23)
Message:

cpp: added set and multiset tests

Location:
uspace/lib/cpp
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/Makefile

    r21d97e8 r0fe0f32  
    5959        src/internal/test/deque.cpp \
    6060        src/internal/test/map.cpp \
     61        src/internal/test/set.cpp \
    6162        src/internal/test/string.cpp \
    6263        src/internal/test/test.cpp \
  • uspace/lib/cpp/include/internal/test/tests.hpp

    r21d97e8 r0fe0f32  
    180180            void test_multi_bounds_and_ranges();
    181181    };
     182
     183    class set_test: public test_suite
     184    {
     185        public:
     186            bool run(bool) override;
     187            const char* name() override;
     188
     189        private:
     190            void test_constructors_and_assignment();
     191            void test_emplace_insert();
     192            void test_bounds_and_ranges();
     193            void test_multi();
     194            void test_reverse_iterators();
     195            void test_multi_bounds_and_ranges();
     196    };
    182197}
    183198
Note: See TracChangeset for help on using the changeset viewer.