pmlpp/test/mlpp_matrix_tests.h

35 lines
612 B
C++

#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:
void test_mlpp_matrix();
void test_mlpp_matrix_mul();
MLPPMatrixTests();
~MLPPMatrixTests();
protected:
static void _bind_methods();
};
#endif