summaryrefslogtreecommitdiff
path: root/browser/unit-tests/testbrowser.h
blob: 271be7bd1a3c0a3b310d61add2c4a9576eaa050d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <QtTest/QtTest>

class TestBrowser: public QObject
{
	Q_OBJECT

private slots:
	void testCanCreate();
	void testCanLoadWebpage();
	void testCanFinishLoadingWebpage();
	void testProgressIncreases();
	void testBack();
	void testForward();
	void testReload();
};