diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-06 13:30:17 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-06 13:37:15 +0200 |
| commit | 3534cd206bedef5ea75302d9abf879b15d1df89c (patch) | |
| tree | 977f646ae1282ff7f539d2a524d1e354bfcf465d /test/json.cpp | |
| parent | 4d6f747c4b8287e042363264a47265848ca2d92c (diff) | |
test: speed up compile time
Removes implicit includes to <windows.h> and <cr/StringView.h> from all
files.
Goes from 30 to 20 seconds.
Diffstat (limited to 'test/json.cpp')
| -rw-r--r-- | test/json.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/json.cpp b/test/json.cpp index 372465b5..e9ed166f 100644 --- a/test/json.cpp +++ b/test/json.cpp @@ -15,7 +15,7 @@ namespace floormat { -void test_app::test_json() // NOLINT(readability-convert-member-functions-to-static) +void Test::test_json() // NOLINT(readability-convert-member-functions-to-static) { fm_assert(Path::exists(Path::join(loader.TEMP_PATH, "CMakeCache.txt"))); const auto output_dir = Path::join(loader.TEMP_PATH, "test/."_s); @@ -32,7 +32,7 @@ void test_app::test_json() // NOLINT(readability-convert-member-functions-to-sta } } -void test_app::test_json2() +void Test::test_json2() { fm_assert(Path::exists(Path::join(loader.TEMP_PATH, "CMakeCache.txt"))); const auto output_dir = Path::join(loader.TEMP_PATH, "test/."_s); @@ -42,7 +42,7 @@ void test_app::test_json2() atlas2->serialize(Path::join(output_dir, "atlas2.json")); } -void test_app::test_json3() +void Test::test_json3() { fm_assert(Path::exists(Path::join(loader.TEMP_PATH, "CMakeCache.txt"))); const auto output_dir = Path::join(loader.TEMP_PATH, "test/."_s); |
