Files
sqlitebrowser/src/tests/TestRowCache.h
Martin Kleusberg 3da520cdd1 Clean up multi threading patch, fix build and some bugs
Make strings translatable, remove some more debug code, fix tests,
reduce size of patch slightly, remove weird tooltip, don't crash when
closing database, simplify code, fix filters, don't link agains pthread
on Windows.
2018-06-08 22:46:47 +02:00

23 lines
314 B
C++

#ifndef TESTROWCACHE_H
#define TESTROWCACHE_H
#include <QObject>
class TestRowCache : public QObject
{
Q_OBJECT
public:
TestRowCache();
~TestRowCache();
private slots:
void construction();
void setGet();
void insert();
void erase();
void smallestNonAvailableRange();
};
#endif