| 1234567891011121314151617181920212223242526272829303132333435 |
- /***************************************************************************
- test_featureutils.h
- --------------------
- begin : Jun 2020
- copyright : (C) 2020 by Ivan Ivanov
- email : ivan@opengis.ch
- ***************************************************************************/
- /***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
- #define CATCH_CONFIG_MAIN
- #include "qgsvectorlayer.h"
- #include "utils/featureutils.h"
- #include "catch2.h"
- TEST_CASE( "FeatureUtils" )
- {
- std::unique_ptr<QgsVectorLayer> vl = std::make_unique<QgsVectorLayer>( QStringLiteral( "Polygon?crs=epsg:3946" ), QStringLiteral( "vl" ), QStringLiteral( "memory" ) );
- QgsGeometry geometry = QgsGeometry::fromWkt( QStringLiteral( "Polygon (((8 8, 9 8, 8 9, 8 8)))" ) );
- QgsFeature f = FeatureUtils::initFeature( vl.get(), geometry );
- REQUIRE( f.fields() == vl->fields() );
- REQUIRE( f.geometry().equals( geometry ) );
- }
|