Add unit tests

This commit is contained in:
Desire NUENTSA
2012-08-03 13:05:45 +02:00
parent 6e8aa96e0f
commit 7dc39b7037
4 changed files with 47 additions and 4 deletions

View File

@@ -163,9 +163,9 @@ inline std::string get_matrixfolder()
{
std::string mat_folder = TEST_REAL_CASES;
if( internal::is_same<Scalar, std::complex<float> >::value || internal::is_same<Scalar, std::complex<double> >::value )
mat_folder = mat_folder + static_cast<string>("/complex/");
mat_folder = mat_folder + static_cast<std::string>("/complex/");
else
mat_folder = mat_folder + static_cast<string>("/real/");
mat_folder = mat_folder + static_cast<std::string>("/real/");
return mat_folder;
}
#endif