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
14// #define DESIGNLAB_USE_TEST
15
16
17#if defined(DESIGNLAB_USE_TEST)
18
19#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
20
21#include <doctest.h>
22
23
24// 以下にテストコードが書かれたhファイルをインクルードすることで登録される.
25
26#include "asyncable_data_test.h"
30#include "loop_util_test.h"
31#include "map_state_test.h"
34#include "math_util_test.h"
35#include "math_vector2_test.h"
36#include "math_vector3_test.h"
39#include "string_util_test.h"
40
41
42#endif // DESIGNLAB_USE_TEST
43
44#endif // DESIGNLAB_TEST_MAIN_H_