diff --git a/Testing/Applications/CMakeLists.txt b/Testing/Applications/CMakeLists.txt
index d7874cb069813a5d0567f809c7724f489d4988d3..ff83f27dd9c1c770c24993841daf8995259bf8d8 100644
--- a/Testing/Applications/CMakeLists.txt
+++ b/Testing/Applications/CMakeLists.txt
@@ -45,6 +45,7 @@ add_test(NAME apTvDocAppli_${app}
        
 endforeach(app)
 
+add_subdirectory(ChangeDetection)
 add_subdirectory(Classification)
 add_subdirectory(FeatureExtraction)
 add_subdirectory(Hyperspectral)
diff --git a/Testing/Applications/ChangeDetection/CMakeLists.txt b/Testing/Applications/ChangeDetection/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..cd55b42f23523197e28d24576812383cbcb9e0f1
--- /dev/null
+++ b/Testing/Applications/ChangeDetection/CMakeLists.txt
@@ -0,0 +1,14 @@
+
+#--- MultivariateAlterationDetector ---#
+
+add_test(NAME apTvChMultivariateAlterationDetector
+         COMMAND otbTestDriver
+               --compare-image 0.025
+                   ${BASELINE}/cdTvMultivariateAlterationDetectorImageFilterOutputSameNbBands.tif
+                   ${TEMP}/apTvChMultivariateAlterationDetectorSameNbBands.tif
+                 Execute $<TARGET_FILE:otbApplicationLauncherCommandLine>
+                 MultivariateAlterationDetector
+                 $<TARGET_FILE_DIR:otbapp_MultivariateAlterationDetector>
+                 --in1 ${INPUTDATA}/Spot5-Gloucester-before.tif
+                 --in2 ${INPUTDATA}/Spot5-Gloucester-after.tif
+                 --out ${TEMP}/apTvChMultivariateAlterationDetectorSameNbBands.tif )