summaryrefslogtreecommitdiff
path: root/browser/unit-tests/browserview/testbrowser.h
blob: 225edafd339ac34096469573bc9c261f5e09097d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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();
    void testGetTitle();
    void testGetUrl();
    void testCanCreateScreenshot();
    void testCanGetFavicon();
};