/** Raster checker for tests in python */ class QgsRasterChecker { %TypeHeaderCode #include %End public: QgsRasterChecker(); //! Destructor ~QgsRasterChecker(); QString report(); /** * 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 ); };