QGIS/python/core/raster/qgsrasterchecker.sip

28 lines
686 B
Plaintext
Raw Normal View History

2015-07-29 11:52:14 +02:00
/** Raster checker for tests in python */
class QgsRasterChecker
{
%TypeHeaderCode
#include <qgsrasterchecker.h>
%End
public:
QgsRasterChecker();
2015-02-03 02:21:52 +01:00
//! Destructor
~QgsRasterChecker();
QString report();
2014-01-27 09:22:24 +01:00
/**
* Test using renderer to generate the image to be compared.
* @param theVerifiedKey verified provider key
* @param theVerifiedUri URI of the raster to be verified
* @param theExpectedKey expected provider key
* @param theExpectedUri URI of the expected (control) raster
*/
bool runTest( const QString& theVerifiedKey, QString theVerifiedUri,
const QString& theExpectedKey, QString theExpectedUri );
};