// This file will be compiled like a real C++ program, // and we do have the luxury to use the standard libraries. // That is if the nix flakes do not have issues... especially on msys2... #include #include #include // Special macro to inform `#include ` that we are testing. #define IRRT_TESTING // Note that failure unit tests are not supported. #include #include #include #include int main() { test::core::run(); test::ndarray_basic::run(); test::ndarray_indexing::run(); test::ndarray_broadcast::run(); return 0; }