pmlpp/test/mlpp_matrix_tests.h

47 lines
821 B
C
Raw Normal View History

#ifndef MLPP_MATRIX_TESTS_H
#define MLPP_MATRIX_TESTS_H
// TODO port this class to use the test module once it's working
// Also don't forget to remove it's bindings
#include "core/math/math_defs.h"
#include "core/containers/vector.h"
#include "core/object/reference.h"
#include "core/string/ustring.h"
#include "mlpp_tests.h"
class MLPPMatrix;
class MLPPVector;
class MLPPMatrixTests : public MLPPTests {
GDCLASS(MLPPMatrixTests, MLPPTests);
public:
2023-04-26 21:50:36 +02:00
void run_tests();
void test_mlpp_matrix();
2023-04-26 21:50:36 +02:00
void test_add_row();
void test_add_row_pool_vector();
void test_add_row_mlpp_vector();
void test_add_rows_mlpp_matrix();
void test_remove_row();
void test_remove_row_unordered();
void test_mlpp_matrix_mul();
MLPPMatrixTests();
~MLPPMatrixTests();
protected:
static void _bind_methods();
};
#endif