Add GroupModel and corresponding unit test.

This commit is contained in:
Felix Geyer 2010-08-15 12:31:48 +02:00
parent 9b0ba46b31
commit 072a8ccf1b
12 changed files with 922 additions and 8 deletions

View file

@ -15,9 +15,29 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QtGui/QApplication>
#include <QtGui/QTreeView>
#include "core/Database.h"
#include "core/Parser.h"
#include "gui/GroupModel.h"
#include "../tests/config-keepassx-tests.h"
int main(int argc, char **argv)
{
QApplication app(argc, argv);
Database* db= new Database();
Parser* parser = new Parser(db);
parser->parse(QString(KEEPASSX_TEST_DIR).append("/NewDatabase.xml"));
GroupModel groupModel(db->rootGroup());
QTreeView view;
view.setModel(&groupModel);
view.setHeaderHidden(true);
view.expandAll();
view.show();
return app.exec();
}