//================================================================================================== /* ROTGEN - Runtime Overlay for Eigen Copyright : CODE RECKONS SPDX-License-Identifier: BSL-1.0 */ //================================================================================================== #include "unit/tests.hpp" #include #include TTS_CASE_TPL("Sample test", rotgen::tests::types) ( tts::type< tts::types> ) { rotgen::matrix x({ {1,2} , {3,4} }); std::ostringstream os; os << x; TTS_EQUAL(os.str(), std::string{"1 2\n3 4"}); };