Author and run GoogleTest 1.17+ for embedded C++ on ARM targets - TEST() / TEST_F() / TEST_P() / TYPED_TEST(), EXPECT_* vs ASSERT_* assertions, fixtures with SetUp() / TearDown(), value-parameterised tests, GoogleMock when paired, cross-compile with arm-none-eabi-g++, run on host or under QEMU via the qemu-system-test-runner skill, --gtest_filter / --gtest_output=xml:results.xml / --gtest_shuffle / --gtest_repeat command-line flags, and XML / JSON output parsing for CI. Use when the unit-under-test is C++ (modern C++17+) and the team wants the de-facto C++ test framework instead of the C-only Unity. For C use unity-test-framework-c; for pure C mocks see the CMock reference in ceedling-build-runner.
76
95%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Low
Low-risk findings.
1 low severity finding. Worth noting, but not necessarily harmful.
The skill fetches instructions or code from an external URL at runtime, and the fetched content directly controls the agent’s prompts or executes code. This dynamic dependency allows the external source to modify the agent’s behavior without any changes to the skill itself.
CMake's FetchContent in references/cross-compile-and-ci.md declares and will fetch the Git repository https://github.com/google/googletest.git at build/runtime (FetchContent_MakeAvailable), meaning remote code is downloaded and then built/executed as a required dependency.
https://github.com/google/googletest.git
dependency · 1 site
CMake FetchContent_Declare fetches the googletest Git repository at build time and FetchContent_MakeAvailable compiles it, downloading and executing remote code as a build dependency.
references/cross-compile-and-ci.md
14
GIT_REPOSITORY https://github.com/google/googletest.git
actions/checkout@v5
dependency · 1 site
The CI workflow example invokes the GitHub-hosted action actions/checkout@v5, a remote dependency fetched and executed at runtime.
references/cross-compile-and-ci.md
124
- uses: actions/checkout@v5
mikepenz/action-junit-report@v4
dependency · 1 site
The CI workflow example invokes the third-party GitHub Action mikepenz/action-junit-report@v4, a remote dependency fetched and executed at runtime.
references/cross-compile-and-ci.md
146
uses: mikepenz/action-junit-report@v4