GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
test_main.h
[詳解]
1
3
4// Copyright(c) 2023-2025 Design Engineering Laboratory, Saitama University
5// Released under the MIT license
6// https://opensource.org/licenses/mit-license.php
7
8#ifndef DESIGNLAB_TEST_MAIN_H_
9#define DESIGNLAB_TEST_MAIN_H_
10
11// ↓テストを使用しない場合コメントアウトすること.
12
13// #define DESIGNLAB_USE_TEST
14
15#if defined(DESIGNLAB_USE_TEST)
16
17#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
18
19#include <doctest.h>
20
21// 以下にテストコードが書かれたhファイルをインクルードすることで登録される.
22
23#include "asyncable_data_test.h"
27#include "loop_util_test.h"
28#include "map_state_test.h"
31#include "math_util_test.h"
32#include "math_vector2_test.h"
33#include "math_vector3_test.h"
34#include "my_expected_test.h"
35#include "my_unexpected_test.h"
38#include "string_util_test.h"
39
40#endif // DESIGNLAB_USE_TEST
41
42#endif // DESIGNLAB_TEST_MAIN_H_