Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
remove conflicting filee in tests
- Loading branch information
|
@@ -55,7 +55,6 @@ class TestQgsPdalProvider : public QObject |
|
|
void brokenPath(); |
|
|
void validLayer(); |
|
|
void testEptGeneration(); |
|
|
void testEptGenerationNonASCII(); |
|
|
|
|
|
private: |
|
|
QString mTestDataDir; |
|
@@ -202,15 +201,5 @@ void TestQgsPdalProvider::testEptGeneration() |
|
|
QVERIFY( fi.exists() ); |
|
|
} |
|
|
|
|
|
void TestQgsPdalProvider::testEptGenerationNonASCII() |
|
|
{ |
|
|
QTemporaryDir dir; |
|
|
QVERIFY( dir.isValid() ); |
|
|
QgsPdalEptGenerationTask task( mTestDataDir + QStringLiteral( "point_clouds/las/cloud%! _čopy.las" ), dir.path() ); |
|
|
QVERIFY( task.run() ); |
|
|
QFileInfo fi( dir.path() + "/ept.json" ); |
|
|
QVERIFY( fi.exists() ); |
|
|
} |
|
|
|
|
|
QGSTEST_MAIN( TestQgsPdalProvider ) |
|
|
#include "testqgspdalprovider.moc" |