Changeset fceeb93 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:
eaabd7d
Parents:
96ae12b
git-author:
Dzejrou <dzejrou@…> (2018-05-11 22:11:29)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:23)
Message:

cpp: added bitset tests

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

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/Makefile

    r96ae12b rfceeb93  
    5656        src/internal/unwind.cpp \
    5757        src/internal/test/array.cpp \
     58        src/internal/test/bitset.cpp \
    5859        src/internal/test/vector.cpp \
    5960        src/internal/test/string.cpp \
  • uspace/lib/cpp/include/internal/test/tests.hpp

    r96ae12b rfceeb93  
    126126            void test_compare();
    127127    };
     128
     129    class bitset_test: public test_suite
     130    {
     131        public:
     132            bool run(bool) override;
     133            const char* name() override;
     134
     135        private:
     136            void test_constructors_and_assignment();
     137            void test_strings();
     138            void test_operations();
     139    };
    128140}
    129141
Note: See TracChangeset for help on using the changeset viewer.