#ifndef DRAWPATH_H
#define DRAWPATH_H

#include <QObject>

class TestDrawPath : public QObject
{
Q_OBJECT
public:
	TestDrawPath() {;}
	~TestDrawPath() {;}
	
private slots:
	void testScaleSize();
	void testDrawPath();
	void testDrawScaledPage();
	void testDrawSection();
	void testDrawScaledSection();
	void testDrawSubsetOfPage();

};

#endif
