mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
Correct Kconfigs according to the coding style
This commit is contained in:
+35
-35
@@ -1,45 +1,45 @@
|
||||
menu "Unity unit testing library"
|
||||
|
||||
config UNITY_ENABLE_FLOAT
|
||||
bool "Support for float type"
|
||||
default y
|
||||
help
|
||||
If not set, assertions on float arguments will not be available.
|
||||
config UNITY_ENABLE_FLOAT
|
||||
bool "Support for float type"
|
||||
default y
|
||||
help
|
||||
If not set, assertions on float arguments will not be available.
|
||||
|
||||
|
||||
config UNITY_ENABLE_DOUBLE
|
||||
bool "Support for double type"
|
||||
default y
|
||||
help
|
||||
If not set, assertions on double arguments will not be available.
|
||||
config UNITY_ENABLE_DOUBLE
|
||||
bool "Support for double type"
|
||||
default y
|
||||
help
|
||||
If not set, assertions on double arguments will not be available.
|
||||
|
||||
config UNITY_ENABLE_COLOR
|
||||
bool "Colorize test output"
|
||||
default n
|
||||
help
|
||||
If set, Unity will colorize test results using console escape sequences.
|
||||
config UNITY_ENABLE_COLOR
|
||||
bool "Colorize test output"
|
||||
default n
|
||||
help
|
||||
If set, Unity will colorize test results using console escape sequences.
|
||||
|
||||
|
||||
config UNITY_ENABLE_IDF_TEST_RUNNER
|
||||
bool "Include ESP-IDF test registration/running helpers"
|
||||
default y
|
||||
help
|
||||
If set, then the following features will be available:
|
||||
|
||||
- TEST_CASE macro which performs automatic registration of test functions
|
||||
- Functions to run registered test functions: unity_run_all_tests,
|
||||
unity_run_tests_with_filter, unity_run_single_test_by_name.
|
||||
- Interactive menu which lists test cases and allows choosing the tests to
|
||||
be run, available via unity_run_menu function.
|
||||
|
||||
Disable if a different test registration mechanism is used.
|
||||
config UNITY_ENABLE_IDF_TEST_RUNNER
|
||||
bool "Include ESP-IDF test registration/running helpers"
|
||||
default y
|
||||
help
|
||||
If set, then the following features will be available:
|
||||
|
||||
config UNITY_ENABLE_FIXTURE
|
||||
bool "Include Unity test fixture"
|
||||
default n
|
||||
help
|
||||
If set, unity_fixture.h header file and associated source files are part of
|
||||
the build. These provide an optional set of macros and functions to
|
||||
implement test groups.
|
||||
- TEST_CASE macro which performs automatic registration of test functions
|
||||
- Functions to run registered test functions: unity_run_all_tests,
|
||||
unity_run_tests_with_filter, unity_run_single_test_by_name.
|
||||
- Interactive menu which lists test cases and allows choosing the tests to
|
||||
be run, available via unity_run_menu function.
|
||||
|
||||
Disable if a different test registration mechanism is used.
|
||||
|
||||
config UNITY_ENABLE_FIXTURE
|
||||
bool "Include Unity test fixture"
|
||||
default n
|
||||
help
|
||||
If set, unity_fixture.h header file and associated source files are part of
|
||||
the build. These provide an optional set of macros and functions to
|
||||
implement test groups.
|
||||
|
||||
endmenu # "Unity unit testing library"
|
||||
|
||||
Reference in New Issue
Block a user