Skip to content
Snippets Groups Projects
Commit aee9280f authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

Ajout test sur ElevManager

parent 059c61f7
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,10 @@ ADD_TEST(utOssimKeywordlistParisIkonosTest ${UTILITIES_TESTS}
${TEMP}/utOssimKeywordlistParisIkonos.txt
)
ADD_TEST(utOssimElevManagerTest ${UTILITIES_TESTS}
ossimElevManagerTest
)
ADD_TEST(utIjBSplineScatteredDataPointSetToImageFilterTest ${UTILITIES_TESTS}
--compare-image ${EPSILON}
......@@ -94,6 +98,7 @@ ADD_TEST(utTvSvmTestGenericModelTest ${UTILITIES_TESTS}
SET(UtilitiesTests_SRCS
ossimIntegrationTest.cxx
ossimKeywordlistTest.cxx
ossimElevManagerTest.cxx
ijBSplineScatteredDataPointSetToImageFilterTest.cxx
svmGenericKernelFunctor.cxx
svmTest.cxx
......
/*!
*
* OVERVIEW:
*
* Will reproject the input image to a utm projection.
*
* PURPOSE:
*
* Teach you how to create a renderer and set the view and connect it up to an input
*
*/
#include <iostream>
#include <fstream>
#include "elevation/ossimElevManager.h"
// this is the most important class and is called as the first line of all applications.
// without this alll the important factories are not created.
#include "init/ossimInit.h"
int ossimElevManagerTest(int argc, char* argv[])
{
ossimElevManager * ElevManager(NULL);
ElevManager=ossimElevManager::instance();
if(ElevManager==NULL)
{
return EXIT_FAILURE;
}
else
{
return EXIT_SUCCESS;
}
}
......@@ -28,6 +28,7 @@ void RegisterTests()
{
REGISTER_TEST(ossimIntegrationTest);
REGISTER_TEST(ossimKeywordlistTest);
REGISTER_TEST(ossimElevManagerTest);
REGISTER_TEST(ijBSplineScatteredDataPointSetToImageFilterTest);
REGISTER_TEST(svmGenericKernelFunctor);
REGISTER_TEST(svmTest);
......
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