@micro-os-plus/micro-test-plus 3.2.0 → 3.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cmake-format.yaml +11 -0
- package/CHANGELOG.md +502 -11
- package/CMakeLists.txt +33 -32
- package/LICENSE +1 -1
- package/README.md +15 -14
- package/config/xcdl-build.json +32 -0
- package/include/micro-os-plus/micro-test-plus/detail.h +1885 -0
- package/include/micro-os-plus/micro-test-plus/function-comparators.h +333 -0
- package/include/micro-os-plus/micro-test-plus/inlines/details-inlines.h +172 -0
- package/include/micro-os-plus/micro-test-plus/inlines/function-comparators-inlines.h +341 -0
- package/include/micro-os-plus/micro-test-plus/inlines/literals-inlines.h +604 -0
- package/include/micro-os-plus/micro-test-plus/inlines/math-inlines.h +315 -0
- package/include/micro-os-plus/micro-test-plus/inlines/micro-test-plus-inlines.h +313 -0
- package/include/micro-os-plus/micro-test-plus/inlines/reflection-inlines.h +170 -0
- package/include/micro-os-plus/micro-test-plus/inlines/test-reporter-inlines.h +471 -0
- package/include/micro-os-plus/micro-test-plus/inlines/test-suite-inlines.h +115 -0
- package/include/micro-os-plus/micro-test-plus/literals.h +912 -0
- package/include/micro-os-plus/micro-test-plus/math.h +217 -0
- package/include/micro-os-plus/micro-test-plus/operators.h +514 -0
- package/include/micro-os-plus/micro-test-plus/reflection.h +233 -0
- package/include/micro-os-plus/micro-test-plus/test-reporter.h +801 -0
- package/include/micro-os-plus/micro-test-plus/test-runner.h +241 -0
- package/include/micro-os-plus/micro-test-plus/test-suite.h +456 -0
- package/include/micro-os-plus/micro-test-plus/type-traits.h +1148 -0
- package/include/micro-os-plus/micro-test-plus.h +171 -554
- package/meson.build +6 -7
- package/package.json +40 -32
- package/src/micro-test-plus.cpp +143 -42
- package/src/test-reporter.cpp +350 -9
- package/src/test-runner.cpp +77 -14
- package/src/test-suite.cpp +132 -14
- package/LICENSE-Boost +0 -23
- package/include/micro-os-plus/detail.h +0 -766
- package/include/micro-os-plus/inlines.h +0 -204
- package/include/micro-os-plus/literals.h +0 -513
- package/include/micro-os-plus/math.h +0 -205
- package/include/micro-os-plus/reflection.h +0 -139
- package/include/micro-os-plus/test-reporter-inlines.h +0 -231
- package/include/micro-os-plus/test-reporter.h +0 -357
- package/include/micro-os-plus/test-runner.h +0 -133
- package/include/micro-os-plus/test-suite.h +0 -307
- package/include/micro-os-plus/type-traits.h +0 -390
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"minimumXcdlRequired": "2.0.0",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"copyright": "Copyright (c) 2022-2026 Liviu Ionescu. All rights reserved.",
|
|
5
|
+
"cdlPackage": {
|
|
6
|
+
"name": "micro-test-plus",
|
|
7
|
+
"description": "µTest++, a lightweight testing framework for embedded platforms",
|
|
8
|
+
"parent": "micro-os-plus",
|
|
9
|
+
"compilerIncludeFolders": [
|
|
10
|
+
"../include"
|
|
11
|
+
],
|
|
12
|
+
"compilerSourceFiles": [
|
|
13
|
+
"../src/micro-test-plus.cpp",
|
|
14
|
+
"../src/test-runner.cpp",
|
|
15
|
+
"../src/test-reporter.cpp",
|
|
16
|
+
"../src/test-suite.cpp"
|
|
17
|
+
],
|
|
18
|
+
"compilerDefinitions": [],
|
|
19
|
+
"compilerOptions": [],
|
|
20
|
+
"dependencies": [],
|
|
21
|
+
"generatedDefinition": "MICRO_OS_PLUS_HAS_MICRO_TEST_PLUS",
|
|
22
|
+
"cdlOptions": {
|
|
23
|
+
"trace": {
|
|
24
|
+
"display": "Enable trace in µTest++",
|
|
25
|
+
"description": "Log trace diagnostics in the µTest++ testing framework when TRACE is enabled",
|
|
26
|
+
"valueType": "bool",
|
|
27
|
+
"requires": "isEnabled('diag-trace')",
|
|
28
|
+
"generatedDefinition": "MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|