CPPUNIT_ASSERT_EQUAL( 0, remove (tempFN.toStdString().c_str()));
}
+ {
+ HYDROData_ShapeFile aSHPFile;
+ QString tempFN = REF_PATH + "/temp_dbf3.dbf";
+ QString refFN = REF_PATH + "/ref_dbf3.dbf";
+ std::vector<HYDROData_ShapeFile::DBF_AttrValue> theAttrV;
+ HYDROData_ShapeFile::DBF_AttrValue theAttr1;
+ theAttr1.myFieldType = HYDROData_ShapeFile::DBF_FieldType_Integer;
+ theAttr1.myIsNull = false;
+
+ for (int ii = 0; ii < 100; ii++)
+ {
+ theAttr1.myIntVal = ii;
+ theAttrV.push_back(theAttr1);
+ }
+
+ //
+ CPPUNIT_ASSERT(aSHPFile.DBF_WriteFieldAndValues(tempFN, "test_field_name", HYDROData_ShapeFile::DBF_FieldType_Integer, theAttrV, false));
+
+ CPPUNIT_ASSERT(compare_two_files(tempFN, refFN));
+ CPPUNIT_ASSERT_EQUAL( 0, remove (tempFN.toStdString().c_str()));
+ }
+
}