Skip to content
Snippets Groups Projects
Commit bb1375b0 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

ENH : add new test

parent 884ab945
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ public:
* Get the point set.
* \return the point set
*/
const PointSetType * GetPointSe() const
const PointSetType * GetPointSet() const
{
return m_PointSet.GetPointer();
}
......
......@@ -70,6 +70,6 @@ private:
};
} // end namespace itk
} // end namespace otb
#endif
......@@ -689,6 +689,12 @@ ADD_TEST(coTvImageRegionNonUniformMultidimensionalSplitter ${COMMON_TESTS8}
${TEMP}/coImageRegionNonUniformMultidimensionalSplitter.txt
)
# ------------- otb::VectorImageToASImageAdaptor ----------------------------
ADD_TEST(coTuVectorImageToASImageAdaptorNew ${COMMON_TESTS8}
otbVectorImageToASImageAdaptorNew
)
# ------- Fichiers sources CXX -----------------------------------
SET(BasicCommon_SRCS1
otbSystemTest.cxx
......@@ -790,6 +796,7 @@ otbImageOfVectorsToMonoChannelExtractROINew.cxx
otbImageOfVectorsToMonoChannelExtractROI.cxx
otbImageRegionNonUniformMultidimensionalSplitterNew.cxx
otbImageRegionNonUniformMultidimensionalSplitter.cxx
otbVectorImageToASImageAdaptorNew.cxx
)
INCLUDE_DIRECTORIES("${OTBTesting_BINARY_DIR}")
......
......@@ -34,4 +34,5 @@ REGISTER_TEST(otbImageOfVectorsToMonoChannelExtractROINew);
REGISTER_TEST(otbImageOfVectorsToMonoChannelExtractROI);
REGISTER_TEST(otbImageRegionNonUniformMultidimensionalSplitterNew);
REGISTER_TEST(otbImageRegionNonUniformMultidimensionalSplitter);
REGISTER_TEST(otbVectorImageToASImageAdaptorNew);
}
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "itkExceptionObject.h"
#include <cstdlib>
#include "otbVectorImageToASImageAdaptor.h"
#include "otbVectorImage.h"
int otbVectorImageToASImageAdaptorNew(int argc, char * argv[])
{
typedef otb::VectorImage<double, 2> ImageType;
typedef otb::VectorImageToASImageAdaptor<ImageType> FilterType;
// Instantiating object
FilterType::Pointer object = FilterType::New();
return EXIT_SUCCESS;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment