Sha256: b440c541d8562af094ef1e7f53bb749296ea1e3eef1ba9aa0310f0b61352a34e
Contents?: true
Size: 486 Bytes
Versions: 20
Compression:
Stored size: 486 Bytes
Contents
#ifndef TEST_POOL_H #define TEST_POOL_H #include <QtTest/QtTest> #include <QtCore/QObject> class PoolObject { public: PoolObject(); ~PoolObject(); int foo; }; class TestPool: public QObject { Q_OBJECT public: TestPool(); private slots: void initTestCase(); void testSimpleAllocation(); void testObjectAllocation(); void testNewBlockAllocation(); void testWastedMemoryDueToBlockAllocation(); void testStdlibCompliance(); }; #endif
Version data entries
20 entries across 20 versions & 2 rubygems