From 0d680e0d155d0fc3dc708c1144e066fe7fc142eb Mon Sep 17 00:00:00 2001
From: Manuel Grizonnet <manuel.grizonnet@gmail.com>
Date: Mon, 7 Jun 2010 16:28:06 +0200
Subject: [PATCH] ADD:add test related to bug num 169

---
 Testing/Fa/0000169-fftcomplextocomplex.cxx | 30 ++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 Testing/Fa/0000169-fftcomplextocomplex.cxx

diff --git a/Testing/Fa/0000169-fftcomplextocomplex.cxx b/Testing/Fa/0000169-fftcomplextocomplex.cxx
new file mode 100644
index 0000000000..38cc24ae09
--- /dev/null
+++ b/Testing/Fa/0000169-fftcomplextocomplex.cxx
@@ -0,0 +1,30 @@
+/*=========================================================================
+
+  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 "itkFFTComplexToComplexImageFilter.h"
+
+int main( int argc, char * argv [] )
+{
+  typedef itk::FFTComplexToComplexImageFilter < float, 2> FFTFilterType;
+
+  FFTFilterType::Pointer fftFilter =    FFTFilterType::New();
+  fftFilter->DebugOn();
+
+  return EXIT_SUCCESS;
+}
-- 
GitLab