diff --git a/src/UnitTests/Matrices/DenseMatrixTest.h b/src/UnitTests/Matrices/DenseMatrixTest.h
index 897861f7fae6ef08df02f65c144236dc12121708..2ddd19c7af3fa4eab6941a3ef25b1dd777acf67b 100644
--- a/src/UnitTests/Matrices/DenseMatrixTest.h
+++ b/src/UnitTests/Matrices/DenseMatrixTest.h
@@ -1166,6 +1166,12 @@ void test_PerformSORIteration()
     EXPECT_EQ( xVector[ 3 ], 0.3671875 );
 }
 
+template< typename Matrix >
+void test_AssignmentOperator()
+{
+   EXPECT_EQ( 1, 0 );
+}
+
 template< typename Matrix >
 void test_SaveAndLoad()
 {