bgc-c/basic-geometry-test/tests/quaternion/quaternion_square_modulus.c
2025-02-13 19:28:40 +07:00

23 lines
466 B
C

#include "./quaternion_square_modulus.h"
#include "./../../helpers.h"
void test_quaternion_square_modulus_fp32()
{
print_testing_name("bgc_quaternion_is_zero_fp32");
print_testing_success();
}
void test_quaternion_square_modulus_fp64()
{
print_testing_name("bgc_quaternion_is_zero_fp64");
print_testing_success();
}
void test_quaternion_square_modulus()
{
test_quaternion_square_modulus_fp32();
test_quaternion_square_modulus_fp64();
}