#include TEST_CASE("readOFF: simple", "[igl]") { Eigen::MatrixXd V, TC; Eigen::MatrixXi F; // wait... so this is actually testing test_common::load_mesh not readOFF // directly... test_common::load_mesh("cube.off", V, F, TC); REQUIRE (V.rows() == 8); REQUIRE (V.cols() == 3); REQUIRE (F.rows() == 12); REQUIRE (F.cols() == 3); }