Skip to content
Snippets Groups Projects
Commit 1cb941c8 authored by Julien Michel's avatar Julien Michel
Browse files

TEST: (Visu Refactoring) Adding a helper class to generate image layers

parent af1d939b
No related branches found
No related tags found
No related merge requests found
......@@ -152,6 +152,12 @@ ADD_TEST(vrTuImageViewerModelNew ${VISUREFAC_TESTS1}
otbImageViewerModelNew
)
#------------ otb::ImageLayerGenerator ------------
ADD_TEST(vrTuImageLayerGeneratorNew ${VISUREFAC_TESTS1}
otbImageLayerGeneratorNew
)
# Testing srcs
SET(VisuRefac_SRCS1
otbImageWidgetNew.cxx
......@@ -171,6 +177,7 @@ otbUniformAlphaBlendingFunctionNew.cxx
otbBlendingImageFilterNew.cxx
otbBlendingImageFilter.cxx
otbImageViewerModelNew.cxx
otbImageLayerGeneratorNew.cxx
)
# Building testing executables
......
/*=========================================================================
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 "otbImageLayerGenerator.h"
#include "otbImageLayer.h"
#include "otbImage.h"
int otbImageLayerGeneratorNew( int argc, char * argv[] )
{
typedef otb::Image<double,2> ImageType;
typedef otb::ImageLayer<ImageType> LayerType;
typedef otb::ImageLayerGenerator<LayerType> GeneratorType;
GeneratorType::Pointer generator = GeneratorType::New();
return EXIT_SUCCESS;
}
......@@ -43,4 +43,5 @@ void RegisterTests()
REGISTER_TEST(otbBlendingImageFilterNew);
REGISTER_TEST(otbBlendingImageFilter);
REGISTER_TEST(otbImageViewerModelNew);
REGISTER_TEST(otbImageLayerGeneratorNew);
}
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