Модульные тесты для Vector2, Vector3, Quaternion и Versor: is unit, is zero, is identity
This commit is contained in:
parent
47ba771b68
commit
2d8240265c
74 changed files with 999 additions and 348 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
// ==================== FP32 ==================== //
|
||||
|
||||
int test_bgc_vector3_set_values_fp32()
|
||||
int test_vector3_set_values_fp32()
|
||||
{
|
||||
BgcVector3FP32 vector;
|
||||
|
||||
|
@ -40,7 +40,7 @@ int test_bgc_vector3_set_values_fp32()
|
|||
|
||||
// ==================== FP64 ==================== //
|
||||
|
||||
int test_bgc_vector3_set_values_fp64()
|
||||
int test_vector3_set_values_fp64()
|
||||
{
|
||||
BgcVector3FP64 vector;
|
||||
|
||||
|
@ -73,13 +73,13 @@ int test_bgc_vector3_set_values_fp64()
|
|||
return TEST_SUCCES;
|
||||
}
|
||||
|
||||
int test_bgc_vector3_set_values()
|
||||
int test_vector3_set_values()
|
||||
{
|
||||
if (test_bgc_vector3_set_values_fp32() != TEST_SUCCES) {
|
||||
if (test_vector3_set_values_fp32() != TEST_SUCCES) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
if (test_bgc_vector3_set_values_fp64() != TEST_SUCCES) {
|
||||
if (test_vector3_set_values_fp64() != TEST_SUCCES) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue