-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added unit test for testqgsfeature.cpp (stubs only thus far)
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5237 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
timlinux
committed
Apr 9, 2006
1 parent
5412764
commit 2df3139
Showing
2 changed files
with
175 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
#include <QtTest> | ||
#include <QObject> | ||
#include <QString> | ||
#include <QObject> | ||
//header for class being tested | ||
#include <qgsfeature.h> | ||
|
||
class TestQgsFeature: public QObject | ||
{ | ||
Q_OBJECT; | ||
private slots: | ||
void QgsFeatureQgsFeature() | ||
{ | ||
|
||
}; | ||
void QgsFeaturefeatureId() | ||
{ | ||
|
||
}; | ||
void QgsFeatureattributeMap() | ||
{ | ||
|
||
}; | ||
void QgsFeatureaddAttribute() | ||
{ | ||
|
||
}; | ||
void QgsFeaturedeleteAttribute() | ||
{ | ||
|
||
}; | ||
void QgsFeaturechangeAttributeValue() | ||
{ | ||
|
||
}; | ||
void QgsFeaturechangeAttributeName() | ||
{ | ||
|
||
}; | ||
void QgsFeaturefields() | ||
{ | ||
|
||
}; | ||
void QgsFeaturegeometry() | ||
{ | ||
|
||
}; | ||
void QgsFeaturegeometryAndOwnership() | ||
{ | ||
|
||
}; | ||
void QgsFeaturegetGeometry() | ||
{ | ||
|
||
}; | ||
void QgsFeaturegetCommittedGeometry() | ||
{ | ||
|
||
}; | ||
void QgsFeaturegetModifiedGeometry() | ||
{ | ||
|
||
}; | ||
void QgsFeaturegetGeometrySize() | ||
{ | ||
|
||
}; | ||
void QgsFeaturegetCommittedGeometrySize() | ||
{ | ||
|
||
}; | ||
void QgsFeaturegetModifiedGeometrySize() | ||
{ | ||
|
||
}; | ||
void QgsFeaturewellKnownText() | ||
{ | ||
|
||
}; | ||
void QgsFeaturesetFeatureId() | ||
{ | ||
|
||
}; | ||
void QgsFeaturetypeName() | ||
{ | ||
|
||
}; | ||
void QgsFeaturesetGeometry() | ||
{ | ||
|
||
}; | ||
void QgsFeaturesetGeometryAndOwnership() | ||
{ | ||
|
||
}; | ||
void QgsFeaturesetModifiedGeometry() | ||
{ | ||
|
||
}; | ||
void QgsFeatureinsertVertexBefore() | ||
{ | ||
|
||
}; | ||
void QgsFeaturemoveVertexAt() | ||
{ | ||
|
||
}; | ||
void QgsFeaturevertexAt() | ||
{ | ||
|
||
}; | ||
void QgsFeatureisValid() | ||
{ | ||
|
||
}; | ||
void QgsFeaturesetValid() | ||
{ | ||
|
||
}; | ||
void QgsFeatureisDirty() | ||
{ | ||
|
||
}; | ||
void QgsFeatureresetDirty() | ||
{ | ||
|
||
}; | ||
void QgsFeatureintersects() | ||
{ | ||
|
||
}; | ||
void QgsFeatureexportToWKT() | ||
{ | ||
|
||
}; | ||
void QgsFeatureclosestVertex() | ||
{ | ||
|
||
}; | ||
void QgsFeaturedistanceSquaredPointToSegment() | ||
{ | ||
|
||
}; | ||
void QgsFeatureclosestSegmentWithContext() | ||
{ | ||
|
||
}; | ||
void QgsFeatureclosestSegment() | ||
{ | ||
|
||
}; | ||
void QgsFeatureboundingBox() | ||
{ | ||
|
||
}; | ||
void QgsFeaturegeosGeometry() | ||
{ | ||
|
||
}; | ||
|
||
}; | ||
|
||
QTEST_MAIN(TestQgsFeature) | ||
#include "testqgsfeature.moc.cpp" | ||
|
||
|
||
|
||
|