Реорганизация тестов (в процессе)
This commit is contained in:
parent
43bf030295
commit
fcf793c758
41 changed files with 252 additions and 314 deletions
|
@ -6,33 +6,33 @@ int test_versor()
|
|||
{
|
||||
print_testing_section("BGC Versor");
|
||||
|
||||
if (test_versor_reset() != TEST_SUCCES) {
|
||||
if (test_versor_reset() != TEST_SUCCESS) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
if (test_versor_set_values() != TEST_SUCCES) {
|
||||
if (test_versor_set_values() != TEST_SUCCESS) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
if (test_versor_copy() != TEST_SUCCES) {
|
||||
if (test_versor_copy() != TEST_SUCCESS) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
if (test_versor_swap() != TEST_SUCCES) {
|
||||
if (test_versor_swap() != TEST_SUCCESS) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
if (test_versor_are_close() != TEST_SUCCES) {
|
||||
if (test_versor_are_close() != TEST_SUCCESS) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
if (test_versor_is_identity() != TEST_SUCCES) {
|
||||
if (test_versor_is_identity() != TEST_SUCCESS) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
if (test_versor_combine() != TEST_SUCCES) {
|
||||
if (test_versor_combine() != TEST_SUCCESS) {
|
||||
return TEST_FAILED;
|
||||
}
|
||||
|
||||
return TEST_SUCCES;
|
||||
return TEST_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue