1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/tests/unit_tests/utils/memory.cpp

25 lines
509 B
C++
Raw Normal View History

2016-10-24 19:47:00 -04:00
#include "utils/memory.hpp"
struct mytype {
int x, y, z;
};
int main() {
2016-11-19 00:22:44 -05:00
using namespace polybar;
2016-10-24 19:47:00 -04:00
"make_malloc_ptr"_test = [] {
auto ptr = memory_util::make_malloc_ptr<mytype>();
expect(sizeof(mytype*) == sizeof(ptr.get()));
ptr.reset();
expect(ptr.get() == nullptr);
};
"countof"_test = [] {
mytype A[3]{{}, {}, {}};
mytype B[8]{{}, {}, {}, {}, {}, {}, {}, {}};
expect(memory_util::countof(A) == size_t{3});
expect(memory_util::countof(B) == size_t{8});
};
}